This package allows you to render Blade templates from a database model instead of files. It is based on Flynsarmy's laravel-db-blade-compiler.
You can install the package via composer:
composer require kiroushi/laravel-db-blade
Publish the assets using artisan:
php artisan vendor:publish
And then set up your DbView model in the config/db-blade.php
configuration file. A default model (Kiroushi\DbBlade\Models\DbView) is included in the package:
return [
'model_name' => 'Kiroushi\DbBlade\Models\DbView',
'table_name' => 'db_views',
/**
* The default name field used to look up for the model.
* e.g. DbView::make($viewName) or dbview($viewName)
*/
'name_field' => 'name',
/**
* The default model field to be compiled when not explicitly specified
* with DbView::field($fieldName) or DbView::model($modelName, $fieldName)
*/
'content_field' => 'content',
/**
* This property will be added to models being compiled with DbView
* to keep track of which field in the model is being compiled
*/
'model_property' => '__db_blade_compiler_content_field',
'cache' => false,
'cache_path' => 'app/db-blade/cache/views'
];
After the configuration and ensuring that the migration has been published, you can create the database views table by running the migrations:
php artisan migrate
This package offers a DbView
facade with the exact same syntax and functionality than View
:
return DbView::make('home')->with(['foo' => 'bar']);
You can also use the dbview()
helper matching Laravel's base view()
helper functionality. If no arguments are supplied, the factory is returned:
return dbview()->make('home')->with(['foo' => 'bar']);
If a string is supplied, a view with that name will be looked up for and rendered:
return dbview('home')->with(['foo' => 'bar']);
You can override individual settings for the model, name field and content field by using associated methods:
return DbView::make('home')->model('App\Template');
return DbView::make('home')->field('template_name');
// You can also pass the model and name field as a shorthand:
return DbView::make('home')->model('App\Template', 'template_name');
// Override content field
return DbView::make('home')->contentField('template_content');
// ... or a combination of these
return DbView::make('home')->model('App\Template', 'template_name')->contentField('template_content');
By default, cache is disabled in config file. If you enable the setting, a compiled version of the views will be stored at the desired path. If the model is updated, the updated_at field will be checked against the file modification date and the view will be re-rendered and cached.
Please see CHANGELOG for more information on what has changed recently.
- Expose view finder callback
- Separate standard view composers from dbview composers.
- Unit tests
laravel-db-blade is open-sourced software licensed under the MIT License (MIT). Please see License File for more information.