PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
nwidart
/
laravel-modules
/
src
/
Traits
<?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')); } } }
[-] ModuleCommandTrait.php
[edit]
[-] MigrationLoaderTrait.php
[edit]
[+]
..
[-] CanClearModulesCache.php
[edit]