Cache Driver

{{ config('cache.default') }}

@if (config('cache.default') === 'redis')

Redis Status

Connected

Database

DB {{ config('database.redis.cache.database', config('database.redis.default.database')) }}

@else

Storage

File System

@endif
@if (config('cache.default') === 'redis')

Redis Configuration

Host & Port
{{ config('database.redis.default.host') }}:{{ config('database.redis.default.port') }}
Cache Prefix
{{ config('cache.prefix') ?: 'None' }}
@endif

Available Cache Actions

Clear App Cache Only

Only clears the application cache (Redis/Database), keeping the compiled views and cached paths. cached views and paths.

Clear All Cache

Completely clears application cache, settings, paths and views. Recommended after major changes.