include approved po's in the system

This commit is contained in:
omair saleh
2020-12-04 10:33:49 +08:00
parent 0d5128ede6
commit a954741fb3
+1 -1
View File
@@ -40,7 +40,7 @@ Route::get('/po-approval', function(){
foreach ($months as $month => $bookings) {
echo "<h3>".$month."(".count($bookings).")</h3><br>";
foreach ($bookings as $booking) {
echo "<a target='_blank' href='https://exchange.cief-malaysia.com/booking/".$booking->id."/upload-invoice'>".$booking->id."</a> <small>date: ".$booking->created_at."</small><br>";
echo "<a target='_blank' href='https://exchange.cief-malaysia.com/booking/".$booking->id."/upload-invoice'>".$booking->id."</a> <small>date: ".$booking->created_at."</small> <small>marking: ".$booking->user->marking."</small><br>";
}
echo "<br><br><br>";
}