2024-05-24 20:07:22 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2024-05-25 17:21:34 +00:00
|
|
|
use Illuminate\Pagination\Paginator;
|
2024-05-24 20:07:22 +00:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*/
|
|
|
|
public function register(): void
|
|
|
|
{
|
2024-05-25 17:21:34 +00:00
|
|
|
Paginator::defaultView('pagination.default');
|
|
|
|
Paginator::defaultSimpleView('pagination.simple-default');
|
2024-05-24 20:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*/
|
|
|
|
public function boot(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|