| {{ __('basic.order number') }} | {{ __('basic.branch') }} | {{ __('basic.client') }} | {{ __('basic.worker') }} | {{ __('basic.status') }} | {{ __('basic.final price') }} | {{ __('basic.created') }} | {{ __('basic.last update') }} |
|---|---|---|---|---|---|---|---|
| {{ $item->code }} | @if($item->branch) {{ $item->branch->name }} @else {{ __('basic.not selected') }} @endif | @if($item->client) {{ $item->client->first_name }} @else {{ __('basic.not selected') }} @endif | @isset($item->creator->first_name) {{ $item->creator->first_name }} @endisset | {{ $msg }} | @php $total_sell += $item->final_price; @endphp {{ $item->final_price }} |
{{ date('Y-m-d', strtotime($item->created_at)) }} {{ date('h:i a', strtotime($item->created_at)) }} |
{{ date('Y-m-d', strtotime($item->updated_at)) }} {{ date('h:i a', strtotime($item->updated_at)) }} |
| {{ __('basic.total') }} | {{ $total_sell }} |