2017-11-03 05:26:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2024-07-04 05:03:11 +00:00
|
|
|
use Illuminate\Support\Facades\Gate;
|
2017-11-03 05:26:07 +00:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
2024-07-14 03:49:00 +00:00
|
|
|
use Intuit\Traits\IntuitSocialite;
|
2021-07-01 09:41:12 +00:00
|
|
|
use Leenooks\Traits\SingleOrFail;
|
2017-11-03 05:26:07 +00:00
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
2021-07-01 09:41:12 +00:00
|
|
|
use SingleOrFail;
|
2024-07-14 03:49:00 +00:00
|
|
|
use IntuitSocialite;
|
2021-07-01 09:41:12 +00:00
|
|
|
|
2017-11-03 05:26:07 +00:00
|
|
|
/**
|
2019-06-02 05:35:48 +00:00
|
|
|
* Register any application services.
|
2017-11-03 05:26:07 +00:00
|
|
|
*/
|
2024-07-04 05:03:11 +00:00
|
|
|
public function register(): void
|
2017-11-03 05:26:07 +00:00
|
|
|
{
|
2024-07-04 05:03:11 +00:00
|
|
|
|
2017-11-03 05:26:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-06-02 05:35:48 +00:00
|
|
|
* Bootstrap any application services.
|
2017-11-03 05:26:07 +00:00
|
|
|
*/
|
2024-07-04 05:03:11 +00:00
|
|
|
public function boot(): void
|
2017-11-03 05:26:07 +00:00
|
|
|
{
|
2024-07-04 05:03:11 +00:00
|
|
|
self::bootSingleOrfail();
|
|
|
|
|
|
|
|
Gate::define('wholesaler', function ($user) {
|
|
|
|
return $user->isWholesaler();
|
|
|
|
});
|
|
|
|
|
|
|
|
Gate::define('reseller', function ($user) {
|
|
|
|
return $user->isReseller();
|
|
|
|
});
|
2024-07-14 03:49:00 +00:00
|
|
|
|
|
|
|
$this->bootIntuitSocialite();
|
2017-11-03 05:26:07 +00:00
|
|
|
}
|
|
|
|
}
|