Skip to content

Releases: mmanos/laravel-casset

Version 1.4.0

12 Nov 21:06
Compare
Choose a tag to compare

Changed syntax for including assets from packages to require both the vendor name and package name. This removes the need to scan through directories looking for the proper vendor path and significantly reduces page load times.

Old Syntax: Casset::add('jquery::/jquery.min.js');
New Syntax: Casset::add('frameworks/jquery::/jquery.min.js');

Version 1.3.0

10 Sep 22:26
Compare
Choose a tag to compare

Adds the ability to optionally defer processing/combining assets to a controller.

Remember to update the alias in config/app.php to point to the new Facade class.

Version 1.2.4

01 May 20:45
Compare
Choose a tag to compare
Merge pull request #5 from dmyers/master

Added ability to get cdn url for an asset.