Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 178 Bytes

tips.md

File metadata and controls

8 lines (8 loc) · 178 Bytes

Routing

Route::prefix('admin')
->as('admin.') // all names will be prefixed by admin.
->group(function() {
    Route::resource('users', UserController::class);
});