@extends('layouts.app') @section('title', $voucher_type->voucher_title . ' - ' . $sale_invoice->main_invoice_no . ' - ' . ($sale_invoice->invoice_date ? formatedDate($sale_invoice->invoice_date) : '') . ' - ' . ($sale_invoice->getPatient->name ?? '')) @section('pages') @php $pageTitle = $sale_invoice->main_invoice_no . ' - ' .($sale_invoice->getPatient->name ?? '').'-'. ($sale_invoice->invoice_date ? formatedDate($sale_invoice->invoice_date) : '') ; @endphp
@include('components.lab-report-sticker')
|
---|
@php
$gender = $sale_invoice->getPatient->account_contact->account_gender_id ?? '1';
$date_of_birth = $sale_invoice->getPatient->account_contact->date_of_birth ?? '';
$age = $date_of_birth != '' ? ageInHours($sale_invoice->getPatient->account_contact->date_of_birth) : 0;
@endphp
|