dev-master
9999999-devTYPO3.Fluid support for Laravel.
MIT
The Requires
The Development Requires
by diego
Wallogit.com
2017 © Pedro Peláez
TYPO3.Fluid support for Laravel.
composer require diego/laravel-fluid-bridge dev-master
In the config/app.php add FluidServiceProvider to the providers section., (*1)
'providers' => [
Diego\Fluid\FluidServiceProvider::class,
],
By default you can now resolve ".html" templates with the normal view('name') call. These files will be rendered by TYPO3.Fluid., (*2)
Further more you can exten the Diego\Fluid\Controller\AbstractFluidController instead of the BaseController and use the view like in Extbase:, (*3)
class Page extends AbstractFluidController
{
public function welcome()
{
$this->view->assign('name', 'John');
}
}
This will resolve the template name to resources/views/Templates/Page/Welcome.html automatically and will render the template after the action is finished., (*4)
TYPO3.Fluid support for Laravel.
MIT