@if($from_date)
@lang('layout.FromDate'):
{{convertDate($from_date)}}
|
@endif
@if($to_date)
@lang('layout.ToDate'):
{{convertDate($to_date)}}
|
@endif
@lang('layout.Record') |
@lang('layout.Number') |
@lang('layout.CarNumber') |
@lang('layout.DriverName') |
@lang('layout.Item') |
@lang('layout.Unit') |
@lang('layout.FullWeight') |
@lang('layout.EmptyWeight') |
@lang('layout.NetWeight') |
@lang('layout.Date') |
@lang('layout.Hour') |
@lang('layout.Description') |
@foreach($data AS $record)
{{++$count}} |
{{$record['number']}} |
{{$record['vehicle_number']}} |
{{$record['driver_name']}} |
{{$record['item_name']}} |
{{$record['measure_name']}} |
{{$record['full_weight']}} |
{{$record['empty_weight']}} |
{{$record['net_weight']}} |
{{convertDate($record['date'])}} |
@if(getHourType() == 24)
{{(($record['hour'] != null)?(date_format(date_create($record['hour']), 'H:i')):null)}} |
@else
{{(($record['hour'] != null)?(date_format(date_create($record['hour']), 'h:i a')):null)}} |
@endif
{{$record['description']}} |
@endforeach
@endif