You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
topnotch_website/app/Providers/AppServiceProvider.php

26 lines
426 B
PHTML

3 months ago
<?php
namespace App\Providers;
3 months ago
use Illuminate\Pagination\Paginator;
3 months ago
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
3 months ago
Paginator::useBootstrapFive();
3 months ago
}
}