Last active
August 1, 2019 21:17
-
-
Save cjonstrup/8228165 to your computer and use it in GitHub Desktop.
Clear Laravel 4.* app/storage/views artisan views:clear
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Console\Command; | |
use Illuminate\Filesystem\Filesystem; | |
class ViewsCommand extends Command { | |
/** | |
* The console command name. | |
* | |
* @var string | |
*/ | |
protected $name = 'views:clear'; | |
/** | |
* The console command description. | |
* | |
* @var string | |
*/ | |
protected $description = 'Clear views folder'; | |
/** | |
* The file system instance. | |
* | |
* @var \Illuminate\Filesystem\Filesystem | |
*/ | |
protected $files; | |
/** | |
* Create a new command instance. | |
* | |
* @return void | |
*/ | |
public function __construct() | |
{ | |
parent::__construct(); | |
$this->files = new \Illuminate\Filesystem\Filesystem; | |
} | |
/** | |
* Execute the console command. | |
* | |
* @return mixed | |
*/ | |
public function fire() | |
{ | |
foreach ($this->files->files(storage_path().'/views') as $file) | |
{ | |
$this->files->delete($file); | |
} | |
$this->info('Views deleted from cache'); | |
} | |
} |
Thanks cjonstrup !
For newbie, don't forget to register that command before use it :
http://laravel.com/docs/4.2/commands#registering-commands
Thanks so much!
It's really useful and save my time.
Thanks sir, you rock!
Don't you miss continuing on .gitignore file? Or doesn't it get listed because it's a hidden dot file?
Shouldn't this be a PR to Laravel?
That's really helpful for me ! Thx !
<?php
use Illuminate\Console\Command;
class ViewsCommand extends Command
{
/**
* The console command name.
*
* @var string
*/
protected $name = 'views:clear';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Clear views folder';
/**
* Execute the console command.
*
* @return mixed
*/
public function fire()
{
File::cleanDirectory(storage_path('views'));
$this->info('Views deleted from cache');
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks!
saved me some minutes.
➜ this is why i like laravel: an active community