2024-07-04 04:34:45 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
2024-07-14 06:40:49 +00:00
|
|
|
use Illuminate\Pagination\Paginator; //add this too
|
2024-07-04 04:34:45 +00:00
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*/
|
|
|
|
public function register(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*/
|
|
|
|
public function boot(): void
|
|
|
|
{
|
2024-07-14 06:40:49 +00:00
|
|
|
// Paginator::useBootstrap(); //this is the bootstrap code
|
2024-07-04 04:34:45 +00:00
|
|
|
}
|
|
|
|
}
|