@extends ('core.layouts.app')
@section ('title', $lang['title'] . ' | ' .trans('features.reports'))
@section('content')
| {{trans('general.employee')}} |
{{trans('pos.opened_on')}} |
{{trans('pos.closed_on')}} |
{{trans('general.status')}} |
{{trans('general.description')}} |
data,true);
$bal='';
foreach ($balance as $key=>$amount_row){
$bal.=''.$key.' : '.amountFormat($amount_row).'
';
}
$st='';
if($row['closed_at']){
$row['closed_at']=dateTimeFormat($row['closed_at']);
$st='';
}
echo '| ' . $row->user->first_name.' '.$row->user->last_name . ' | ' . dateTimeFormat($row['created_at']) . ' | ' . $row['closed_at'] . ' | ' . $st . ' | ' . $bal . ' |
';
$fill = !$fill;
}
@endphp
@endsection
@section('after-scripts')
{{-- For DataTables --}}
{{ Html::script(mix('js/dataTable.js')) }}
@endsection