1
0
mirror of https://github.com/LinkStackOrg/LinkStack.git synced 2025-01-29 18:49:30 +01:00
2021-04-16 03:30:00 +04:30

31 lines
464 B
PHP
Executable File

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