mikehenken / laravel-db-blade-compiler by mikehenken
forked from Flynsarmy/laravel-db-blade-compiler

Render Blade templates from Eloquent Model Fields
36
1
1
Package Data
Maintainer Username: mikehenken
Maintainer Contact: flynsarmy@gmail.com (Flyn San)
Package Create Date: 2015-03-18
Package Last Update: 2015-03-18
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:06:27
Package Statistics
Total Downloads: 36
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

DB Blade Compiler

Render Blade templates from Eloquent Model Fields

This package generates and returns a compiled view from a blade-syntax field in your Eloquent model.

Installation

Require this package in your composer.json and run composer update (or run composer require mikeheknen/laravel-db-blade-compiler:1.* directly):

"mikeheknen/laravel-db-blade-compiler": "1.*"

After updating composer, add the ServiceProvider to the providers array in app/config/app.php

'Flynsarmy\DbBladeCompiler\DbBladeCompilerServiceProvider',

and the Facade to the aliases array in the same file

'DbView'          => 'Flynsarmy\DbBladeCompiler\Facades\DbView',

You can also optionally publish the config-file

php artisan config:publish flynsarmy/db-blade-compiler

Usage

This package offers a DbView facade with the same syntax as View but accepts a Model instance instead of path to view.

$template = Template::first();
return DbView::make($template)->with(['foo' => 'Bar'])->render();

Because you're passing a model to DbView::make(), db-blade-compiler needs to know which field to compile. By default this is content however you can set the field used with either of the following methods:

return DbView::make($template, ['foo' => 'Bar'], [], 'excerpt')->render();
return DbView::make($template)->field('excerpt')->with(['foo' => 'Bar'])->render();

You may set the default column used in the package config.

License

db-blade-compiler is open-sourced software licensed under the MIT license