From 584be8af3611c07901f15bdaac1e80b775114277 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Tue, 29 Sep 2020 15:31:11 +0800 Subject: [PATCH] send email to notify customer about china bankslip and instruction to upload po --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 5cda9e4c..65e221f8 100644 --- a/routes/web.php +++ b/routes/web.php @@ -18,7 +18,7 @@ Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm Route::post('password/reset', 'Auth\ResetPasswordController@postReset')->name('password.reset'); Route::get('mail', function () { - $booking = App\Invoice::find(9323); + $booking = \App\Booking::find(9323); return (new App\Notifications\UploadPo($booking)) ->toMail($booking->user);