ibox/mix-function is a Laravel package for laravel mix function to render versioned assetes.
It currently has 13 GitHub stars and 6.649 downloads on Packagist (latest version v1.0.0).
Install it with composer require ibox/mix-function.
Discover more Laravel packages by ibox
or browse all Laravel packages to compare alternatives.
Last updated
Mix function to render versioned assetes outside Laravel project
First install Laravel Mix https://github.com/JeffreyWay/laravel-mix
Then add this this line in your require section
"require": {
"ibox/mix-function": "~1.0"
}
Then run:
composer install
Optionally you can run
composer dump-autoload
If you you have a public directory, you can configure laravel mix as follow
mix.setPublicPath('public');
mix.sass('resources/assets/sass/app.sass', 'public/css').version();
Require composer autoload
require '../vendor/autoload.php';
Then in your HTML you can use mix function like this:
<link href="<?= mix('/css/app.css', __DIR__) ?>" rel="stylesheet">