mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-22 05:44:13 +00:00
show old invoices
This commit is contained in:
+1
-1
@@ -14,7 +14,7 @@ Route::get('/', 'WelcomeController@index');
|
||||
Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.request');
|
||||
Route::post('password/reset', 'Auth\ResetPasswordController@postReset')->name('password.reset');
|
||||
Route::get('/old-invoices', function(){
|
||||
$bookings = \App\Booking::where('status', 6);
|
||||
$bookings = \App\Booking::where('status', 6)->get();
|
||||
dd(count($bookings));
|
||||
})->name('home');
|
||||
Route::group(['middleware' => ['role:admin']], function() {
|
||||
|
||||
Reference in New Issue
Block a user