2022-09-26 21:48:05 -04:00
|
|
|
<?php
|
|
|
|
|
2023-05-17 12:56:55 -04:00
|
|
|
namespace BookStack\App\Providers;
|
2022-09-26 21:48:05 -04:00
|
|
|
|
|
|
|
use BookStack\Entities\BreadcrumbsViewComposer;
|
|
|
|
use Illuminate\Pagination\Paginator;
|
|
|
|
use Illuminate\Support\Facades\Blade;
|
|
|
|
use Illuminate\Support\Facades\View;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
class ViewTweaksServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Bootstrap services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
|
|
|
{
|
|
|
|
// Set paginator to use bootstrap-style pagination
|
|
|
|
Paginator::useBootstrap();
|
|
|
|
|
|
|
|
// View Composers
|
|
|
|
View::composer('entities.breadcrumbs', BreadcrumbsViewComposer::class);
|
|
|
|
|
|
|
|
// Custom blade view directives
|
|
|
|
Blade::directive('icon', function ($expression) {
|
|
|
|
return "<?php echo icon($expression); ?>";
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|