list customer with delayed shipment

This commit is contained in:
Omair Saleh
2022-10-18 13:36:41 +08:00
parent 724861270c
commit 38e7f89293
+1 -1
View File
@@ -426,7 +426,7 @@ Route::get('billplz/bills/{bill_no}', function($bill_no){
Route::get('/export/null-debtor/f614e339d7058904a831aad742e24d55', 'Exports\ExportCustomersToExcelController@nullDebtor')->name('newDebtor.export');
Route::get('/export/payment-transactions/f614e339d7058904a831aad742e24d55', 'Exports\ExportCustomersToExcelController@paymentTransactions')->name('paymentTransactions.export');
Route::get('/delayed_container/customers', function($bill_no){
Route::get('/delayed_container/customers', function(){
$containers = Container::whereHas('transports', function($query){
return $query->whereHas('Schedules', function($query){
return $query->where('eta', '>', \Carbon\Carbon::parse('15-10-2022'));