芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/www/vendor/laravel/framework/src/Illuminate/Foundation/Console/ViewClearCommand.php
files = $files; } /** * Execute the console command. * * @return void * * @throws \RuntimeException */ public function handle() { $path = $this->laravel['config']['view.compiled']; if (! $path) { throw new RuntimeException('View path not found.'); } foreach ($this->files->glob("{$path}/*") as $view) { $this->files->delete($view); } $this->info('Compiled views cleared!'); } }