CourseWork/app/Providers/AppServiceProvider.php

26 lines
422 B
PHP
Raw Normal View History

2024-04-15 16:23:05 +04:00
<?php
namespace App\Providers;
2024-05-03 12:42:37 +04:00
use Illuminate\Pagination\Paginator;
2024-04-15 16:23:05 +04: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-05-03 12:42:37 +04:00
Paginator::useBootstrap();
2024-04-15 16:23:05 +04:00
}
}