sudomabider / laravel-asset-manager
This package is abandoned and no longer maintained.
No replacement package was suggested.
Allows for assets like js and css to be easily managed and called in Laravel
0.1.5
2017-01-29 03:09 UTC
Requires
- php: >=5.4
- illuminate/view: 5.*
Requires (Dev)
- fzaninotto/faker: ^1.6
- orchestra/testbench: 3.3.3|~3.4.0
- phpunit/phpunit: ^5.2
This package is not auto-updated.
Last update: 2020-01-24 16:28:34 UTC
README
#Simple Asset Manager for Laravel
Installation
- Run
composer require sudomabider/laravel-asset-manager
- Add
Sudomabider\AssetManager\AssetManagerServiceProvider::class
to app configproviders
array - Run
php artisan vendor:publish --provider="Sudomabider\AssetManager\AssetManagerServiceProvider" --tag="config"
Configuration
All the assets are defined as key-value pairs in the assets
array. The key would then be used in the view files to include the resources, e.g. @css('animate')
.
The value part allows for 3 types of formats.
- simple resource url:
'css' => 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css'
- arrays of resource urls
'js' => [
'https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.12/js/jquery.dataTables.min.js',
'https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.12/js/dataTables.bootstrap.min.js'
]
- js also accepts an array of options. Note in this case the whole js asset must be wrapped in an array
'js' => [
['https://cdnjs.cloudflare.com/ajax/libs/pace/1.0.2/pace.min.js', ['data-pace-options' => '{ "ajax": false }']]
]
which outputs
<script data-pace-options='{ "ajax": false }' type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/pace/1.0.2/pace.min.js'></script>
This can be used together with the 2nd format
Example usage
config/asset-manager.php
'assets' => [
'animate' => [
'css' => 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css'
],
'tagsinput' => [
'css' => 'https://cdnjs.cloudflare.com/ajax/libs/bootstrap-tagsinput/0.8.0/bootstrap-tagsinput.css',
'js' => 'https://cdnjs.cloudflare.com/ajax/libs/bootstrap-tagsinput/0.8.0/bootstrap-tagsinput.min.js'
],
'datatables' => [
'css' => 'https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.12/css/dataTables.bootstrap.min.css',
'js' => [
'https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.12/js/jquery.dataTables.min.js',
'https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.12/js/dataTables.bootstrap.min.js'
]
],
...
]
view.blade.php
@css('animate', 'tagsinput', 'datatables')
@js('tagsinput', 'datatables')
This will create asset inclusions in your html with the corresponding urls.
You can also call urls directly
@css('https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css')