42 lines
		
	
	
		
			1002 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1002 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Providers;
 | |
| 
 | |
| use App\Models\User;
 | |
| use Illuminate\Support\Facades\Gate;
 | |
| use Laravel\Horizon\Horizon;
 | |
| use Laravel\Horizon\HorizonApplicationServiceProvider;
 | |
| 
 | |
| class HorizonServiceProvider extends HorizonApplicationServiceProvider
 | |
| {
 | |
|     /**
 | |
|      * Bootstrap any application services.
 | |
|      */
 | |
|     public function boot(): void
 | |
|     {
 | |
|         parent::boot();
 | |
| 
 | |
| 
 | |
|         // Horizon::routeSmsNotificationsTo('15556667777');
 | |
|         // Horizon::routeMailNotificationsTo('example@example.com');
 | |
|         // Horizon::routeSlackNotificationsTo('slack-webhook-url', '#channel');
 | |
| 
 | |
|         Horizon::night();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Register the Horizon gate.
 | |
|      *
 | |
|      * This gate determines who can access Horizon in non-local environments.
 | |
|      */
 | |
|     protected function gate(): void
 | |
|     {
 | |
|         Gate::define('viewHorizon', function ($user) {
 | |
|             $root_user = User::find(0);
 | |
|             return in_array($user->email, [
 | |
|                 $root_user->email
 | |
|             ]);
 | |
|         });
 | |
|     }
 | |
| }
 |