chriscubos/jspack

Laraval collection of public assets packages for your development.
16
Install
composer require chriscubos/jspack
Latest Version:1.0.0
PHP:~5.4|~7.0
License:MIT
Last Updated:Sep 4, 2016
Links: GitHub  ·  Packagist
Maintainer: chriscubos

chriscubos/jspack

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.

Related Packages

phpmv/php-mv-ui

A JQuery and UI library for php and php MVC frameworks

20,674 33
nosh2/nosh2

NOSH ChartingSystem.

1,170 77
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,306 162
artdarek/oauth-4-laravel

OAuth Service Provider for Laravel 4

519,073 678