@extends('app')
@section('content')
Print
@if($patientInfo)
-
{!! \App\Custom\Helper::printBarcode($patientInfo, $patientInfo) !!}
-
Patient: {{$patientInfo->full_name}}
Age: {{\App\Custom\Helper::patientAge($patientInfo->dob)}}
-
Invoice No: {{$patientInfo->sale_invoice_id}}
Phone: {{$patientInfo->mobile_no}}
-
Gender: {{$patientInfo->gender === 1 ? 'Male' : 'Female'}}
Date: {{$patientInfo->date}}
@if(!empty($patientInfo->referred_by))
-
Ref By : {{$patientInfo->referred_by}}
@endif
-
Test: {{$serviceTestNames}}
@endif
@endsection
@section('extra-css')
@stop
@section('extra-js')
@endsection