37 lines
744 B
PHP
37 lines
744 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use URL;
|
|
|
|
// use Doctrine\DBAL\Types\Type;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
Gate::before(function ($user, $ability) {
|
|
return $user->hasRole('Super Admin') ? true : null;
|
|
});
|
|
|
|
// URL::forceScheme('https');
|
|
|
|
// if (!Type::hasType('citext')) {
|
|
// Type::addType('citext', \Doctrine\DBAL\Platforms\PostgreSqlPlatform::class);
|
|
// }
|
|
}
|
|
}
|