igaster / laravel-theme

Theme support for Laravel
MIT License
516 stars 110 forks source link

Debugging #54

Closed jhourlad closed 7 years ago

jhourlad commented 7 years ago

The library seems to hide URLS of assets if not found in the hierarchy. This prevents the developer from debugging the code. Any workaround on this?

igaster commented 7 years ago

Yes!

Publish the configuration file and change the value of

'asset_not_found' => 'LOG_ERROR',

to

'asset_not_found' => 'THROW_EXCEPTION',
jhourlad commented 7 years ago

It works! Thank you.