Portal payment added print and pdf action..

This commit is contained in:
Cüneyt Şentürk
2021-06-27 12:59:56 +03:00
parent 116562ea03
commit 339e7b320a
10 changed files with 92 additions and 152 deletions

View File

@ -17,6 +17,8 @@ Route::group(['as' => 'portal.'], function () {
Route::resource('invoices', 'Portal\Invoices');
Route::get('payments/currencies', 'Portal\Payments@currencies')->name('payment.currencies');
Route::get('payments/{payment}/print', 'Portal\Payments@printPayment')->name('payments.print');
Route::get('payments/{payment}/pdf', 'Portal\Payments@pdfPayment')->name('payments.pdf');
Route::resource('payments', 'Portal\Payments');
Route::get('profile/read-invoices', 'Portal\Profile@readOverdueInvoices')->name('invoices.read');