BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
igaster
/
laravel-theme
/
src
/
Commands
📤 Upload
📝 New File
📁 New Folder
Close
Editing: refreshCache.php
<?php namespace Igaster\LaravelTheme\Commands; use Igaster\LaravelTheme\Facades\Theme; class refreshCache extends baseCommand { protected $signature = 'theme:refresh-cache'; protected $description = 'Rebuilds the cache of "theme.json" files for each theme'; public function handle() { // Rebuild Themes Cache Theme::rebuildCache(); $this->info("Themes cache was refreshed. Currently theme caching is: " . (Theme::cacheEnabled() ? "ENABLED" : "DISABLED")); } }
Save
Cancel