diff --git a/routes/web.php b/routes/web.php index a83d270d..45ff8b2d 100644 --- a/routes/web.php +++ b/routes/web.php @@ -19,6 +19,7 @@ Route::post('password/reset', 'Auth\ResetPasswordController@postReset')->name('p Route::get('/po-approval', function(){ $invoices = InvoiceStatuses::where('status', 'pending'); + dd(count($invoices)); foreach ($invoices as $invoice){ echo $invoice->invoice->booking->id; }