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

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

android - IBM Worklight 6.1 [Application Error] There was a network error (file:///android_asset/www/index.html) -