for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Listeners;
use Illuminate\Support\Facades\Cache;
class FlushMenuTreeCache
{
/**
* Handle the event.
*
* @return void
*/
public function handle()
Cache::forget('menu:tree');
}