| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace App\Providers;
- use Illuminate\Pagination\Paginator;
- use Illuminate\Support\Facades\URL;
- use Illuminate\Support\ServiceProvider;
- class AppServiceProvider extends ServiceProvider
- {
- /**
- * Register any application services.
- */
- public function register(): void
- {
- //
- }
- /**
- * Bootstrap any application services.
- */
- public function boot(): void
- {
- Paginator::useBootstrapFive();
- if(app()->isProduction()) {
- URL::forceScheme('https');
- }
- }
- }
|