AuthServiceProvider.php 474 B

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