New-OMIS/app/Providers/AppServiceProvider.php

28 lines
434 B
PHP
Raw Normal View History

2024-04-04 13:08:00 +05:45
<?php
namespace App\Providers;
2024-04-10 11:40:07 +05:45
use Illuminate\Pagination\Paginator;
2024-04-04 13:08:00 +05:45
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 11:40:07 +05:45
Paginator::useBootstrap();
2024-04-04 13:08:00 +05:45
}
}