osb/app/Providers/AppServiceProvider.php

45 lines
966 B
PHP
Raw Normal View History

2017-11-03 05:26:07 +00:00
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Gate;
use Illuminate\Support\Facades\Route;
2017-11-03 05:26:07 +00:00
use Illuminate\Support\ServiceProvider;
use Intuit\Traits\IntuitSocialite;
2017-11-03 05:26:07 +00:00
2024-08-24 07:37:55 +00:00
use App\Models\{Checkout,Cost,Payment,Product,Service,Supplier};
2017-11-03 05:26:07 +00:00
class AppServiceProvider extends ServiceProvider
{
use IntuitSocialite;
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
*/
public function register(): void
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
*/
public function boot(): void
2017-11-03 05:26:07 +00:00
{
Gate::define('wholesaler', function ($user) {
return $user->isWholesaler();
});
Gate::define('reseller', function ($user) {
return $user->isReseller();
});
$this->bootIntuitSocialite();
Route::model('co',Checkout::class);
2024-08-24 07:37:55 +00:00
Route::model('cso',Cost::class);
Route::model('po',Payment::class);
Route::model('pdo',Product::class);
Route::model('so',Service::class);
Route::model('spo',Supplier::class);
2017-11-03 05:26:07 +00:00
}
}