SUBD_Transport_Company/app/Providers/AppServiceProvider.php

26 lines
422 B
PHP
Raw Normal View History

2024-01-10 10:57:28 +04:00
<?php
namespace App\Providers;
use Illuminate\Pagination\Paginator;
2024-01-10 10:57:28 +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
{
Paginator::useBootstrap();
2024-01-10 10:57:28 +04:00
}
}