• File: AuthServiceProvider.php
  • Full Path: /var/www/imalipartnersapi/app/Providers/AuthServiceProvider.php
  • Date Modified: 02/07/2023 8:01 PM
  • File size: 1.23 KB
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App\Providers;

use Illuminate\Support\Facades\Gate;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Route;
use Laravel\Passport\Passport;

class AuthServiceProvider extends ServiceProvider
{
    /**
     * The policy mappings for the application.
     *
     * @var array
     */
    protected $policies = [
        // 'App\Model' => 'App\Policies\ModelPolicy',
    ];

    /**
     * Register any authentication / authorization services.
     *
     * @return void
     */
    public function boot()
    {
        $this->registerPolicies();

        Passport::routes();

        Passport::tokensExpireIn(now()->addDays(15));
        Passport::refreshTokensExpireIn(now()->addDays(30));
        Passport::personalAccessTokensExpireIn(now()->addMonths(6));

//        Passport::routes();
//        Route::group(['middleware' => 'store_provider'], function () {
//            Passport::routes();
//            Passport::tokensExpireIn(now()->addMinutes(30));
//            Passport::refreshTokensExpireIn(now()->addMinutes(60));
//            Passport::personalAccessTokensExpireIn(now()->addMonths(6));
//        });


    }
}