@extends('layouts.master') @section('title', 'Company Sections') @section('css') @endsection @section('page-header') @endsection @section('content')
قائمة أقسام الشركة
عرض جميع الأقسام المسجلة
@if(session('success'))
{{ session('success') }}
@endif
@foreach($sections as $key => $section) @endforeach
# العنوان (عربي) العنوان (إنجليزي) الحالة التحكم
{{ $key + 1 }} {{ $section->title_ar }} {{ $section->title_en }} {{ $section->is_active ? 'مفعل' : 'غير مفعل' }}
@csrf @method('DELETE')
@endsection @section('js') @endsection