mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 12:24:09 +00:00
show old invoices
This commit is contained in:
+1
-1
@@ -15,7 +15,7 @@ Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm
|
||||
Route::post('password/reset', 'Auth\ResetPasswordController@postReset')->name('password.reset');
|
||||
Route::get('/old-invoices', function(){
|
||||
$bookings = \App\Booking::select('id')->where('status', 6)->whereHas('invoice', function($q){
|
||||
$q->whereNotNull('invoice_url');
|
||||
$q->whereNotNull('invoice_path');
|
||||
})->get();
|
||||
dd($bookings);
|
||||
})->name('home');
|
||||
|
||||
Reference in New Issue
Block a user