@extends('layouts/layoutMaster') @section('title', 'Studies List') @section('vendor-style') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-checkboxes-jquery/datatables.checkboxes.scss', 'resources/assets/vendor/libs/datatables-buttons-bs5/buttons.bootstrap5.scss' ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/moment/moment.js', 'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js' ]) @endsection @section('content')

24

Clients


165

Invoices


$2.46k

Paid

$876

Unpaid

@foreach($studies as $study) @endforeach
Accession Number Patient ID Patient Name Patient Sex Modality Study Date Receive Date Series Institute Name  
{{ $study->accession_number }} {{ $study->patient_id }} {{ $study->patient_name }} {{ $study->sexAge() }} {{ $study->study_modality }} {{ $study->study_date }} {{ $study->received_at }} {{ $study->numInstances() }} {{ $study->institution_name }} @if ($study->allowed()['stone']) St | @endif @if ($study->allowed()['ohif']) O | @endif @if ($study->allowed()['ohif.mpr']) OM | @endif @if ($study->allowed()['ohif.seg']) OS | @endif @if ($study->allowed()['zip']) Z | @endif Reported @can(\App\Models\Enums\Permission::ReportCreate) TXT @endcan
{!! $studies->links() !!}
@endsection