for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Route;
class RouteServiceProvider extends ServiceProvider
{
public const HOME = '/';
protected $namespace = 'App\Http\Controllers';
public function map()
$this->mapApiRoutes();
$this->mapWebRoutes();
}
protected function mapWebRoutes()
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
protected function mapApiRoutes()
Route::prefix('api')
->middleware('api')
->group(base_path('routes/api.php'));