manual payments list

This commit is contained in:
omair saleh
2022-08-24 16:18:01 +08:00
parent 1d4b2fb473
commit 66bc339db2
+1 -1
View File
@@ -367,7 +367,7 @@ Route::get('/payments/manual', function(){
echo '<table>';
foreach ($payments as $payment){
echo '<tr>';
echo '<td>'.$payment->documents()->first() ? $payment->documents()->first()->created_at : 'not sure: '.$payment->created_at.'</td>';
// echo '<td>'.$payment->documents()->first() ? $payment->documents()->first()->created_at : 'not sure: '.$payment->created_at.'</td>';
echo '<td><a href="'.route('booking.details', $payment->owner->marking).'" target="_blank">'.$payment->owner->marking.'</a></td>';
echo '<td>'.$payment->amount.'</td>';
echo '</tr>';