mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
32 lines
776 B
PHP
32 lines
776 B
PHP
|
<?php
|
||
|
|
||
|
namespace BookStack\Providers;
|
||
|
|
||
|
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); ?>";
|
||
|
});
|
||
|
}
|
||
|
}
|