@extends('layouts.pdf') @section('content')
| {{__('Barcode')}} : {{$group['barcode']}} | {{__('Order id')}} : {{$group['id']}} |
| {{__('Patient Code')}} : @if(isset($group['patient'])) {{ $group['patient']['code'] }} @endif | {{__('Patient Name')}} : @if(isset($group['patient'])) {{ $group['patient']['name'].' '. $group['patient']['last_name']}} @endif |
| {{__('Age')}} : @if(isset($group['patient'])) {{$group['patient']['age']}} @endif | {{__('Gender')}} : @if(isset($group['patient'])) {{ __($group['patient']['gender']) }} @endif |
| {{__('Employee name')}} : {{ auth()->guard('admin')->user()->name. ' '. auth()->guard('admin')->user()->last_name }} |