{{-- maintenance.blade.php --}} @extends('admin.layouts.master') @section('css') @endsection @section('page-header') @endsection @section('content')
{{-- All Toggle Section --}}

التحكم في جميع الخدمات

إيقاف أو تشغيل جميع الخدمات بضغطة واحدة

@if($services->isEmpty())
لا توجد خدمات مسجلة. قم بتشغيل الـ seeder لإضافة الخدمات الافتراضية.
@endif {{-- Services Grid --}} @foreach ($services as $service)
{{ $service->display_name_ar }}
{{ $service->display_name_en }}
@if($service->is_active) @else @endif {{ $service->is_active ? 'نشط' : 'متوقف' }}
@if ($service->toggled_at)
آخر تعديل: {{ $service->toggled_at->diffForHumans() }} @if ($service->toggledBy) بواسطة {{ $service->toggledBy->name }} @endif
@endif
@endforeach
@endsection @section('js') @endsection