first
This commit is contained in:
13
modules/Notification/Routes/admin.php
Normal file
13
modules/Notification/Routes/admin.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Routing\Router;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::group([
|
||||
'prefix' => 'notifications',
|
||||
'namespace' => 'Admin',
|
||||
'as' => 'notification.',
|
||||
], function (Router $router) {
|
||||
$router->resource('templates', 'IndexController');
|
||||
$router->get('settings', 'SettingController@index');
|
||||
});
|
||||
Reference in New Issue
Block a user