diff --git a/routes/web.php b/routes/web.php index 78514b07..a06ba1d2 100644 --- a/routes/web.php +++ b/routes/web.php @@ -361,3 +361,17 @@ Route::get('/wallets/active', function(){ echo ''; }); +Route::get('/payments/manual', function(){ + $payments = Transaction::where('type', TransactionType::PAYMENT)->where('owner_type', Booking::class)->get(); + + echo ''; + foreach ($payments as $payment){ + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + } + echo '
'.$payment->documents()->first()->created_at.''.$payment->owner->marking.''.$payment->amount.'
'; +}); +