D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
nwidart
/
laravel-modules
/
src
/
Traits
/
Filename :
CanClearModulesCache.php
back
Copy
<?php namespace Nwidart\Modules\Traits; trait CanClearModulesCache { /** * Clear the modules cache if it is enabled */ public function clearCache() { if (config('modules.cache.enabled') === true) { app('cache')->forget(config('modules.cache.key')); } } }