15 lines
400 B
Plaintext
15 lines
400 B
Plaintext
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
/**
|
|
* 'portal' middleware and 'portal/$ALIAS$' prefix applied to all routes (including names)
|
|
*
|
|
* @see \App\Providers\Route::register
|
|
*/
|
|
|
|
Route::portal('$ALIAS$', function () {
|
|
// Route::get('invoices/{invoice}', 'Main@show')->name('invoices.show');
|
|
// Route::post('invoices/{invoice}/confirm', 'Main@confirm')->name('invoices.confirm');
|
|
});
|