chriscubos / jspack
Laraval collection of public assets packages for your development.
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 0
Language:JavaScript
Requires
- php: ~5.4|~7.0
- chriscubos/packager: 1.0.0
This package is not auto-updated.
Last update: 2024-10-26 20:04:25 UTC
README
A LaravelPHP package for your important jQuery libraries preloaded in your [/public/packages] folder. With easy to use blade directives and calls.
Install
Via Composer
$ composer require chriscubos/jspack
Setup [config/app.php]
// add this 'providers' => [ Chriscubos\JsPack\JsPackServiceProvider::class, ],
Usage
<?php echo JsPack::packages(['datatables', 'bootstrap-wysihtml5']);?> <?=JsPack::packages(['datatables', 'bootstrap-wysihtml5']);?> // blade must use {!! !!} {!!JsPack::packages(['datatables', 'bootstrap-wysihtml5'])!!} // Directive @jspack(['datatables', 'bootstrap-wysihtml5'])
Output
<script src='/packages/datatables/dataTables.bootstrap.min.js'></script> <link href='/packages/datatables/dataTables.bootstrap.css' rel='stylesheet'/> <link href='/packages/datatables/jquery.dataTables.min.css' rel='stylesheet'/> <script src='/packages/datatables/jquery.dataTables.min.js'></script> <script src='/packages/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js'></script> <link href='/packages/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css' rel='stylesheet'/>
Change log
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING and CONDUCT for details.
Security
If you discover any security related issues, please email chriscubos@outlook.com instead of using the issue tracker.
Credits
- [Christopher John Cubos][link-author]
- [Ethan Sky Cubos][link-author]
- [All Contributors][link-contributors]
License
The MIT License (MIT). Please see License File for more information.