blog/app/Providers/AppServiceProvider.php

26 lines
426 B
PHP
Raw Permalink Normal View History

2024-02-19 11:07:04 +01:00
<?php
namespace App\Providers;
use Illuminate\Pagination\Paginator;
2024-02-19 11:07:04 +01:00
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();
2024-02-19 11:07:04 +01:00
}
}