Edit File: api.php
<?php use Illuminate\Support\Facades\Route; Route::group(['prefix' => 'general'], function () { require __DIR__ . '/guards/general.php'; }); Route::group(['prefix' => 'user'], function () { require __DIR__ . '/guards/user.php'; }); Route::group(['prefix' => 'provider'], function () { require __DIR__ . '/guards/provider.php'; }); Route::group(['prefix' => 'delegate'], function () { require __DIR__ . '/guards/delegate.php'; });
Back to File Manager