Examples of code I've written in PHP, Javascript, SCSS, etc.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

31 lignes
585 B

  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
  4. use Illuminate\Support\Facades\Gate;
  5. class AuthServiceProvider extends ServiceProvider
  6. {
  7. /**
  8. * The policy mappings for the application.
  9. *
  10. * @var array
  11. */
  12. protected $policies = [
  13. // 'App\Models\Model' => 'App\Policies\ModelPolicy',
  14. ];
  15. /**
  16. * Register any authentication / authorization services.
  17. *
  18. * @return void
  19. */
  20. public function boot()
  21. {
  22. $this->registerPolicies();
  23. //
  24. }
  25. }