| Package Data | |
|---|---|
| Maintainer Username: | Kyslik |
| Maintainer Contact: | martinkiesel@gmail.com (Martin Kiesel) |
| Package Create Date: | 2015-03-04 |
| Package Last Update: | 2017-07-13 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 15:02:06 |
| Package Statistics | |
|---|---|
| Total Downloads: | 7,696 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 4 |
| Total Watchers: | 0 |
| Total Forks: | 2 |
| Total Open Issues: | 0 |
Simple artisan command to clear view folder in Laravel 5.1 and Laravel-5.0
Simply put: clears storage/framework/views folder.
If you are using Laravel 5.1.* you do NOT need this package since it is part of Laravel base commands.
$ php artisan view:clear
Pull this package in through Composer.
{
"require-dev": {
"kyslik/view-clear": "~2.0.0"
}
}
$ composer update
Add the package to your application service providers in config/app.php
'providers' => [
App\Providers\RouteServiceProvider::class,
/*
* Third Party Service Providers...
*/
Kyslik\ViewClear\ViewClearServiceProvider::class,
],
$ php artisan view:clear --help
When developing blade extensions it is useful to clear view cache in process.