clear test user data

This commit is contained in:
omair saleh
2020-09-29 13:34:21 +08:00
parent a0179ba711
commit cded98d412
+1 -1
View File
@@ -19,7 +19,7 @@ Route::post('password/reset', 'Auth\ResetPasswordController@postReset')->name('p
Route::get('/clear-test', function(){
$bookings = \App\Booking::where('user_id', 1)->get();
foreach ($bookings as $booking){
var_dump($booking->userBankSlip);
var_dump($booking->purchaseOrder);
}
});