mirror of
https://gh.wpcy.net/https://github.com/avenjamin/freescout-UnassignedCount-Module.git
synced 2026-05-04 13:22:22 +08:00
6 lines
217 B
PHP
6 lines
217 B
PHP
<?php
|
|
|
|
Route::group(['middleware' => 'web', 'prefix' => \Helper::getSubdirectory(), 'namespace' => 'Modules\UnassignedCount\Http\Controllers'], function()
|
|
{
|
|
Route::get('/', 'UnassignedCountController@index');
|
|
});
|