No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AuthServiceProvider.php 518B

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