@extends('layouts/app') @section('content')
@csrf
@php $region = Config('config.region.value'); @endphp @if (Auth::user()->userIsHQBranchs()) @else @endif
@if (Auth::user()->userIsHQBranchs()) @else @endif
@if (Session::has('error'))
Note:
@foreach(Session::get('error') as $err) {{ $err }}
@endforeach @php Session::forget('error'); @endphp
@endif
@if (!empty($reports)) @foreach ($reports as $key => $rep) @if($key!='total') @endif @endforeach
# Branch Date Time Pos Transaction No Call GUID Status
{{ ++$key }} {{ $rep['branch'] }} {{ $rep['date'] }} {{ $rep['time'] }} {{ $rep['transaction_no'] }} {{ $rep['call_guid'] }} {{ $rep['status'] }}
@else

No data found

@endif
@endsection @section('js') @stop