@extends('layout.admin') @section('content')

Dashboard / Dev Mode

@if(session('success')) @endif @if(session('error')) @endif
Dev Mode Status

Dev mode allows you to manually revalidate the frontend cache. It is automatically disabled after 24 hours for security and performance reasons.

@csrf @if($devModeActive)
Dev Mode is currently ACTIVE. You can now clear the cache.
@else
Dev Mode is currently DISABLED.
@endif
Cache Revalidation
@csrf

Note: Using "All" will send a request with tag 'all' matching the frontend cache configuration for full cache purge.

@endsection