Releases: igaster/laravel-theme
Releases · igaster/laravel-theme
v1.0.17
v1.0.16
v1.0.15
v1.0.14
- You can use {parameters} inside any path. README updated...
- @css & @js are rewritten with better regular expressions. Also file lookup is performed at runtime and not cached (during Blade compilation) which should resolve some issues when hot switching themes...
- Removed new line in output of Theme::css / Theme::js (thanks @TechKat)
Upgrading guide:
Due to changes in output of @css
and @js
, you might have to manualy delete cached views from \storage\framework\views
so that Laravel will be forced to rebuild them. (Both in dev and production environment)
v1.0.13
v1.0.12
v1.0.11
Added configuration option to define an action when an asset is not found. Options are:
/*
|--------------------------------------------------------------------------
| Set behavior if an asset is not found in a Theme hierarcy.
| Available options: THROW_EXCEPTION | LOG_ERROR | IGNORE
|--------------------------------------------------------------------------
*/
'asset_not_found' => 'LOG_ERROR',
defaults to 'LOG_ERROR' if not found. Please update your theme.php configuration file to use these options.