Viewing File: /home/ubuntu/shop-website-base/app/Providers/RouteServiceProvider.php

<?php

namespace App\Providers;

use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;

class RouteServiceProvider extends ServiceProvider
{
    /**
     * The path to the "home" route for your application.
     *
     * This is used by Laravel authentication to redirect users after login.
     *
     * @var string
     */
    public const HOME = '/home';

    protected $namespace = 'App\Http\Controllers';

    /**
     * The controller namespace for the application.
     *
     * When present, controller route declarations will automatically be prefixed with this namespace.
     *
     * @var string|null
     */
    // protected $namespace = 'App\\Http\\Controllers';

    /**
     * Define your route model bindings, pattern filters, etc.
     *
     * @return void
     */
    public function boot()
    {
        parent::boot();

        // $this->configureRateLimiting();
    }

    public function map() {

        $this->mapAdminRoutes();

        $this->mapApiRoutes();

        $this->mapUserRoutes();

    }

    protected function mapAdminRoutes() {

        Route::namespace($this->namespace)
            ->middleware('admin')
            ->group(base_path('routes/admin.php'));
    }

    protected function mapUserRoutes() {
       
        Route::namespace($this->namespace)
            ->middleware('user')
            ->group(base_path('routes/user.php'));
    }

    protected function mapApiRoutes() {
        Route::prefix('api')
             ->middleware('api')
             ->namespace($this->namespace)
             ->group(function ($router) {
                require base_path('routes/api.php');
            });
    }

    /**
     * Configure the rate limiters for the application.
     *
     * @return void
     */
    protected function configureRateLimiting() {
        
        RateLimiter::for('api', function (Request $request) {
            return Limit::perMinute(60);
        });
    }
}
Back to Directory File Manager