Closed jviure closed 5 years ago
Hi! thanks for this big package! I've a doubt.
Route::group(['middleware' => ['auth']], function () { ... Route::get('budgets/{budget}/edit/{complex}', [ 'uses' => 'BudgetsController@edit', 'middleware' => ['permission:budget.complex_budgets'], ]); ... });
When a user access to budget.complex_budgets route, with the code from above, the request does not pass through the auth middleware, it's normal? seems as if this route overwrite the parent group :S
Thanks!
Hi! thanks for this big package! I've a doubt.
When a user access to budget.complex_budgets route, with the code from above, the request does not pass through the auth middleware, it's normal? seems as if this route overwrite the parent group :S
Thanks!