Clear cache in 24 hours laravel

    By: Manu
    4 years ago
    Cache::remember('notificationsAuditableType',86400, function () {
      return 'some value';
    }
    


    24hours equals 86400 seconds.

    Include this in controller

    use Illuminate\Support\Facades\Cache;