row-bloom / twig-interpolator
row-bloom Twig interpolator driver
v0.2.0
2024-01-01 16:06 UTC
Requires
- twig/twig: ^3.6
This package is auto-updated.
Last update: 2024-10-30 17:48:53 UTC
README
Important
This is a sub-split, for development, pull requests and issues, visit: https://github.com/row-bloom/row-bloom
Installation
composer require row-bloom/twig-interpolator
use RowBloom\RowBloom\Support; use RowBloom\TwigInterpolator\TwigInterpolator; app()->get(Support::class); ->registerInterpolatorDriver(TwigInterpolator::NAME, TwigInterpolator::class)
Requires:
- PHP >= 8.1
Usage
use RowBloom\TwigInterpolator\TwigInterpolator; use RowBloom\RowBloom\Renderers\HtmlRenderer; use RowBloom\RowBloom\RowBloom; app()->get(RowBloom::class) ->addTable([ ['title' => 'Title1', 'body' => 'body1'], ['title' => 'Title2', 'body' => 'body2'], ]) ->setInterpolator(TwigInterpolator::NAME) ->setTemplate(' <h1>{{ title }}</h1> <p>Bold text</p> <div>{{ body }}</div> ') ->setRenderer(HtmlRenderer::class) ->save(__DIR__.'/foo.pdf');
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.