tethys/app/Providers/RouteServiceProvider.php

77 lines
1.8 KiB
PHP
Raw Normal View History

<?php
2018-08-06 12:30:51 +00:00
namespace App\Providers;
use Illuminate\Support\Facades\Route;
2015-07-19 06:49:24 +00:00
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
2018-11-21 12:40:34 +00:00
class RouteServiceProvider extends ServiceProvider
2018-08-06 12:30:51 +00:00
{
2015-07-19 06:49:24 +00:00
2018-11-21 12:40:34 +00:00
/**
* This namespace is applied to the controller routes in your routes file.
*
* In addition, it is set as the URL generator's root namespace.
*
* @var string
*/
protected $namespace = 'App\Http\Controllers';
2021-05-25 12:15:02 +00:00
public const HOME = '/settings';
2015-07-19 06:49:24 +00:00
2018-11-21 12:40:34 +00:00
/**
* Define your route model bindings, pattern filters, etc.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
public function boot()
{
parent::boot();
2015-07-19 06:49:24 +00:00
2018-11-21 12:40:34 +00:00
//
}
2015-07-19 06:49:24 +00:00
2018-11-21 12:40:34 +00:00
/**
* Define the routes for the application.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
public function map()
{
2018-08-06 12:30:51 +00:00
//Route::group(['namespace' => $this->namespace], function()
//{
// require app_path('Http/routes.php');
2018-11-21 12:40:34 +00:00
//});
$this->mapApiRoutes();
2018-08-06 12:30:51 +00:00
$this->mapWebRoutes();
2018-11-21 12:40:34 +00:00
}
2018-08-06 12:30:51 +00:00
/**
* Define the "web" routes for the application.
*
* These routes all receive session state, CSRF protection, etc.
*
* @return void
*/
protected function mapWebRoutes()
{
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
2018-11-21 12:40:34 +00:00
}
/**
2018-08-06 12:30:51 +00:00
* Define the "api" routes for the application.
*
* These routes are typically stateless.
*
* @return void
*/
protected function mapApiRoutes()
{
Route::middleware('api')
2019-02-12 11:21:35 +00:00
->namespace($this->namespace)
->group(base_path('routes/api.php'));
2018-08-06 12:30:51 +00:00
}
2015-07-19 06:49:24 +00:00
}