freescout-Following-Module/Http/routes.php
Avenjamin b9a7b46024 Initial Following Module code
Beginnings of the code for the Following module
2023-02-23 21:27:09 +11:00

6 lines
205 B
PHP

<?php
Route::group(['middleware' => 'web', 'prefix' => \Helper::getSubdirectory(), 'namespace' => 'Modules\Following\Http\Controllers'], function()
{
Route::get('/', 'FollowingController@index');
});