Files
newznab-tmux/app/Providers/AppServiceProvider.php
T
2023-05-26 23:40:04 +02:00

28 lines
506 B
PHP

<?php
namespace App\Providers;
use Illuminate\Pagination\Paginator;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*/
public function boot(): void
{
Paginator::useBootstrapFive();
$smarty = app('smarty.view');
view()->share('smarty', $smarty);
}
/**
* Register any application services.
*/
public function register(): void
{
//
}
}