view - Use uncached / uncompiled laravel blade template -
is possible use uncompiled / uncached laravel blade view stack trace doesn't report :
c:\xampp\htdocs\laravel\app\storage\views\952767ebe8bae04dc9f53b45e5aa8047
but rather original name :
c:\xampp\htdocs\laravel\app\views\view.blade.php
view cache in core of laravel's view, don't think can easily, but, in quick dirty @ this, can delete remaining views every time application starts, won't have many of them around, should fast.
foreach(file::files(app::make('path.storage').'/views') $file) { file::delete($file); }
Comments
Post a Comment