2024-04-04 07:23:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2024-04-10 05:55:07 +00:00
|
|
|
use Illuminate\Pagination\Paginator;
|
2024-04-04 07:23:00 +00: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
|
|
|
|
{
|
|
|
|
//
|
2024-04-10 05:55:07 +00:00
|
|
|
|
|
|
|
Paginator::useBootstrap();
|
2024-04-04 07:23:00 +00:00
|
|
|
}
|
|
|
|
}
|