2018-10-04 19:10:43 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-04 19:10:43 +02:00
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2019-04-03 03:17:21 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2018-10-15 07:00:48 +02:00
|
|
|
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
|
2019-10-05 00:58:51 +02:00
|
|
|
use Illuminate\Support\Facades\Route;
|
2018-10-04 19:10:43 +02:00
|
|
|
|
|
|
|
class RouteServiceProvider extends ServiceProvider
|
|
|
|
{
|
2019-04-03 03:17:21 +02:00
|
|
|
use MakesHash;
|
2018-10-04 19:10:43 +02:00
|
|
|
/**
|
|
|
|
* This namespace is applied to your controller routes.
|
|
|
|
*
|
|
|
|
* In addition, it is set as the URL generator's root namespace.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $namespace = 'App\Http\Controllers';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define your route model bindings, pattern filters, etc.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
//
|
2018-10-04 19:10:43 +02:00
|
|
|
parent::boot();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the routes for the application.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function map()
|
|
|
|
{
|
|
|
|
$this->mapApiRoutes();
|
|
|
|
|
|
|
|
$this->mapWebRoutes();
|
|
|
|
|
2019-07-08 02:08:57 +02:00
|
|
|
$this->mapContactApiRoutes();
|
2019-07-16 04:38:11 +02:00
|
|
|
|
|
|
|
$this->mapClientApiRoutes();
|
2020-07-28 13:19:51 +02:00
|
|
|
|
|
|
|
$this->mapShopApiRoutes();
|
2018-10-04 19:10:43 +02: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'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the "api" routes for the application.
|
|
|
|
*
|
|
|
|
* These routes are typically stateless.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function mapApiRoutes()
|
|
|
|
{
|
2019-04-02 08:36:49 +02:00
|
|
|
Route::prefix('')
|
2018-10-04 19:10:43 +02:00
|
|
|
->middleware('api')
|
|
|
|
->namespace($this->namespace)
|
|
|
|
->group(base_path('routes/api.php'));
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Define the "api" routes for the application.
|
|
|
|
*
|
|
|
|
* These routes are typically stateless.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2019-07-08 02:08:57 +02:00
|
|
|
protected function mapContactApiRoutes()
|
|
|
|
{
|
|
|
|
Route::prefix('')
|
|
|
|
->middleware('contact')
|
|
|
|
->namespace($this->namespace)
|
|
|
|
->group(base_path('routes/contact.php'));
|
|
|
|
}
|
2019-07-16 04:38:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the "client" routes for the application.
|
|
|
|
*
|
|
|
|
* These routes are typically stateless.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function mapClientApiRoutes()
|
|
|
|
{
|
|
|
|
Route::prefix('')
|
|
|
|
->middleware('client')
|
|
|
|
->namespace($this->namespace)
|
|
|
|
->group(base_path('routes/client.php'));
|
|
|
|
}
|
2020-07-28 13:19:51 +02:00
|
|
|
|
|
|
|
protected function mapShopApiRoutes()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
Route::prefix('')
|
2020-07-28 13:19:51 +02:00
|
|
|
->middleware('shop')
|
|
|
|
->namespace($this->namespace)
|
2020-09-06 11:38:10 +02:00
|
|
|
->group(base_path('routes/shop.php'));
|
2020-07-28 13:19:51 +02:00
|
|
|
}
|
2018-10-04 19:10:43 +02:00
|
|
|
}
|