From c6ab6a04ec7d16a2c089ed3f812cab215f9f9d3f Mon Sep 17 00:00:00 2001 From: omair saleh Date: Tue, 29 Sep 2020 12:04:05 +0800 Subject: [PATCH] list pending po pending approval --- routes/web.php | 1 - 1 file changed, 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 951bd092..53de3e22 100644 --- a/routes/web.php +++ b/routes/web.php @@ -19,7 +19,6 @@ Route::post('password/reset', 'Auth\ResetPasswordController@postReset')->name('p Route::get('/po-approval', function(){ $invoices = InvoiceStatuses::where('status', 'pending')->get(); - dd(count($invoices)); foreach ($invoices as $invoice){ echo $invoice->invoice->booking->id; }