2024-04-27 14:17:16 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2024-05-07 10:35:04 +03:00
|
|
|
use Illuminate\Pagination\Paginator;
|
2024-04-27 14:17:16 +03:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
public function register(): void
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function boot(): void
|
|
|
|
{
|
2024-05-07 10:35:04 +03:00
|
|
|
Paginator::useBootstrapFive();
|
2024-04-27 14:17:16 +03:00
|
|
|
}
|
|
|
|
}
|