@php $page_name = 'Live Transactions'; @endphp @php $userRole = auth()->user()->roles[0]->id; $ledger = auth()->user()->getLedger(); $group_id = 0; if($ledger){ $group_id = $ledger->group_id; } @endphp @php $currentDateTime = new DateTime(); $nineThirty = new DateTime('9:30'); // If the current time is less than 9:30 AM, subtract one day if ($currentDateTime < $nineThirty) { $dateToShow = $currentDateTime->modify('-1 day')->format('Y-m-d'); } else { $dateToShow = $currentDateTime->format('Y-m-d'); } @endphp @include('partial.header')
@include('partial.navigation')
@if (session('message'))
{{ session('message') }}
@endif
Live Transactions
Shift Search (F5)
Sr D U/J Party Rate Amount Added Updated Action
0 D U/J Party Rate 0 Added Updated Action
Party
Number Amount
@include('partial.footer')