The Laravel mix version task appends a unique hash to filename,
allowing for cache-busting.
For example, the generated file name will look something like:
all-16d570a7.css., (*2)
In Laravel, you can use in your views the mix() function to load
the appropriately hashed asset:, (*3)
``` html
, (*4)
This twig extension is an adaptation of this `mix()` function.
## Requirements
You need PHP >= 7.0 to use the library, but the latest stable version
of PHP is recommended.
## Install
Install using Composer:
``` bash
composer require stormiix/laravel-mix-twig-extension:dev-master
This will edit (or create) your composer.json file and automatically
choose the most recent version., (*5)
Documentation [TODO]
Register the extension
``` php
use Stormiix\Twig\Extension\MixExtension;, (*6)
$mix = new MixExtension(
$publicDir, // the absolute public directory
$manifestName // the manifest filename (default value is 'mix-manifest.json')
);
$twig->addExtension($mix);, (*7)
### Register the extension as a Symfony Service
Refer to the original repo.
### Using the Extension
``` twig
<link rel="stylesheet" href="{{ Mix('css/all.css') }}">
<script src="{{ Mix('js/all.js') }}"></script>
You can surround with the asset twig extension to make your
application more portable:, (*8)