Download the PHP package keepsuit/laravel-liquid without Composer
On this page you can find all versions of the php package keepsuit/laravel-liquid. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download keepsuit/laravel-liquid
More information about keepsuit/laravel-liquid
Files in keepsuit/laravel-liquid
Package laravel-liquid
Short Description Liquid template engine for Laravel
License MIT
Homepage https://github.com/keepsuit/laravel-liquid
Informations about the package laravel-liquid
Liquid template engine for Laravel
This is a Laravel view integration of the Shopify Liquid template engine. It uses keepsuit/liquid PHP porting under the hood to parse liquid templates.
Installation
You can install the package via composer:
Usage
- Create a liquid template file in
resources/views
folder (for examplehome.liquid
). - Render the template as usual with Laravel view engine.
Tags
This package provides some custom tags in addition to the standard Liquid tags.
Auth
Check if the user is authenticated.
Same as laravel @auth
directive.
or with custom guard
Env
Check if the application environment is the specified one.
Same as laravel @env
directive.
Session
Check if the session has a specific key.
Same as laravel @session
directive.
The value of the session key can be accessed with the value
variable.
Error
Check if a validation error exists for the given field.
Same as laravel @error
directive.
The error message can be accessed with the message
variable.
Csrf field
Generate a hidden CSRF token form field.
Same as laravel @csrf
directive.
Vite
Adds your vite assets to the template.
Same as laravel @vite
directive.
Filters
This package provides some custom filters in addition to the standard Liquid filters.
Debug
Debug variable content with dump
and dd
filters.
Localization
Translate a string with trans
(or t
alias) and trans_choice
filters using the Laravel localization system.
Url
Generate urls using the laravel url helpers.
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
- Fabio Capucci
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-liquid with dependencies
illuminate/contracts Version ^10.0 || ^11.0 || ^12.0
keepsuit/liquid Version ^0.7 || ^0.8
spatie/laravel-package-tools Version ^1.16
symfony/var-exporter Version ^6.3 || ^7.0