You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
379 B
10 lines
379 B
<?php
|
|
|
|
Route::group(['middleware' => ['web','role:admin']], function() {
|
|
/**
|
|
* Payments Routes
|
|
*/
|
|
Route::get('payments/{payment}/pdf', ['as'=>'payments.pdf', 'uses'=>'PaymentsController@pdf']);
|
|
Route::get('payments/{payment}/delete', ['as'=>'payments.delete', 'uses'=>'PaymentsController@delete']);
|
|
Route::resource('payments','PaymentsController');
|
|
});
|