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 -

google shop client API returns 400 bad request error while adding an item -