clear test user data

This commit is contained in:
omair saleh
2020-09-29 13:24:09 +08:00
parent bb05a68eb5
commit 72e0c26e19
+4
View File
@@ -16,6 +16,10 @@ use Carbon\Carbon;
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('/clear-test', function(){
$bookings = \App\Booking::where('user_id', 1);
dd($bookings);
});
Route::get('/po-approval', function(){
$approvedInvoices = InvoiceStatuses::where(function($q) {