Portal > Payment search and filter

This commit is contained in:
Cüneyt Şentürk
2021-01-12 22:21:59 +03:00
parent c1bfcb8b9a
commit c502b73632
4 changed files with 34 additions and 4 deletions

View File

@ -16,6 +16,7 @@ Route::group(['as' => 'portal.'], function () {
Route::post('invoices/{invoice}/confirm', 'Portal\Invoices@confirm')->name('invoices.confirm');
Route::resource('invoices', 'Portal\Invoices');
Route::get('payments/currencies', 'Portal\Payments@currencies')->name('payment.currencies');
Route::resource('payments', 'Portal\Payments');
Route::get('profile/read-invoices', 'Portal\Profile@readOverdueInvoices')->name('invoices.read');