list pending po pending approval

This commit is contained in:
omair saleh
2020-09-29 12:04:05 +08:00
parent 438c2dec58
commit c6ab6a04ec
-1
View File
@@ -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;
}