@extends('app') @section('content')

Summary Report

@can('patient-view') @if(count($cabinBooking) > 0) @foreach($cabinBooking as $key => $val) @endforeach @endif
Patient Name Sale Invoice ID Cabin Name Booking Date Release Date Status
{{$val->patient->user->full_name}} {{$val->sale_invoice_id}} {{ $val->cabin->diagnosticTest->diagnostic_test_name }} {{$val->booking_date}} {{$val->release_date}} @if($val->status == 1) @endif @if($val->status == 2) @endif
Patient Name Sale Invoice ID Cabin Name Booking Date Release Date Status
@endcan
@can('patient-view') @if(count($seatBooking) > 0) @foreach($seatBooking as $key => $val) @endforeach @endif
Patient Name Sale Invoice ID Seat Name Booking Date Release Date Status
{{$val->patient->user->full_name}} {{$val->sale_invoice_id}} {{ $val->seat->diagnosticTest->diagnostic_test_name }} {{$val->booking_date}} {{$val->release_date}} @if($val->status == 1) @endif @if($val->status == 2) @endif
Patient Name Sale Invoice ID Seat Name Booking Date Release Date Status
@endcan
@endsection @section('script') @endsection