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