41 lines
721 B
PHP
41 lines
721 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Intuit\Traits\IntuitSocialite;
|
|
use Leenooks\Traits\SingleOrFail;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
use SingleOrFail;
|
|
use IntuitSocialite;
|
|
|
|
/**
|
|
* Register any application services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
self::bootSingleOrfail();
|
|
|
|
Gate::define('wholesaler', function ($user) {
|
|
return $user->isWholesaler();
|
|
});
|
|
|
|
Gate::define('reseller', function ($user) {
|
|
return $user->isReseller();
|
|
});
|
|
|
|
$this->bootIntuitSocialite();
|
|
}
|
|
}
|