@extends('layouts.dashboard')
@section('title', t('إدارة الكاش','Cache Manager'))
@section('page-title','🗄️ '.t('إدارة التخزين المؤقت','Cache Manager'))
@section('content')
@foreach([
['views', '🖼️', t('Views Cache','Views Cache'), t('صفحات Blade المُحوَّلة','Compiled Blade views'), $cacheInfo['views'].' '.t('ملفات','files')],
['bootstrap', '⚙️', t('Bootstrap Cache','Bootstrap Cache'), t('ملفات التشغيل الأساسية','Core bootstrap files'), $cacheInfo['bootstrap'].' '.t('ملفات','files')],
['data', '📦', t('Data Cache','Data Cache'), t('بيانات مؤقتة متنوعة','Various cached data'), '—'],
['logs', '📋', t('Laravel Log','Laravel Log'), t('سجل أخطاء التطبيق','Application error log'), $cacheInfo['log_size']],
] as [$type, $icon, $name, $desc, $size])
{{ $size }}
@endforeach
{{-- Clear All --}}