shevaua/laravel-assets

There is no license information available for the latest version (v1.0.1) of this package.

Tools for manage assets

v1.0.1 2019-03-06 21:56 UTC

This package is auto-updated.

Last update: 2025-06-07 18:06:31 UTC


README

This package will help you to manage your assets within layouts. It's so simple to add them:

<head>
    @assets(<group_id>)
</head>

Installation

1. install package:

composer require shevaua/laravel-assets

2. publish default configuration:

./artisan vendor:publish --tag=laravel-assets

3. modify configuration(assets.php) and add your own groups:

'my_group' => [
    '<path1>:<version1>',
    '<path2>:<version2>',
],