clear test user data

This commit is contained in:
omair saleh
2020-09-29 13:24:59 +08:00
parent 72e0c26e19
commit a2ac5e7bf5
+1 -1
View File
@@ -17,7 +17,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('/clear-test', function(){
$bookings = \App\Booking::where('user_id', 1);
$bookings = \App\Booking::where('user_id', 1)->get();
dd($bookings);
});