@extends('admin.layouts.app') @section('content')

{{ $pageTitle }}

@if(!empty(session()->has('msg')))
{!! nl2br(e(session()->get('msg'))) !!}
@endif

مسح جميع أنواع الـ Cache

ملاحظة: مسح الـ Cache قد يستغرق بضع ثوانٍ. سيتم مسح جميع أنواع الـ Cache التالية:
  • Application Cache
  • Config Cache
  • Route Cache
  • View Cache
  • Compiled Classes
@csrf

مسح Cache محدد

Application Cache

مسح بيانات التطبيق المؤقتة

@csrf
Config Cache

مسح ملفات الإعدادات المؤقتة

@csrf
View Cache

مسح ملفات الـ Views المترجمة

@csrf
Route Cache

مسح ملفات الـ Routes المؤقتة

@csrf
Compiled Classes

مسح الكلاسات المترجمة

@csrf
@endsection