@extends('layouts.pdf') @section('content')

{{__('Working paper')}}

@if(isset($group['patient']))
{{__('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'] }} @endif
{{__('Age')}} : @if(isset($group['patient'])) {{$group['patient']['age']}} @endif {{__('Gender')}} : @if(isset($group['patient'])) {{ __($group['patient']['gender']) }} @endif
{{__('Sample collection date')}} : {{ $group['sample_collection_date'] }} {{__('Date')}} : {{ get_system_date() }}
{{__('Employee id')}} : {{ auth()->guard('admin')->user()->id }} {{__('Employee name')}} : {{ auth()->guard('admin')->user()->name }}

{{__('Required tests')}}

@endif
@endsection