mirror of
https://gh.wpcy.net/https://github.com/freescout-help-desk/SampleModule.git
synced 2026-07-18 12:11:33 +08:00
6 lines
258 B
PHP
6 lines
258 B
PHP
<?php
|
|
|
|
Route::group(['middleware' => 'web', 'prefix' => 'samplemodule', 'namespace' => 'Modules\SampleModule\Http\Controllers'], function()
|
|
{
|
|
Route::get('/', ['uses' => 'SampleModuleController@index', 'laroute' => true])->name('samplemodule_index');
|
|
});
|