@extends('admin.layout') @section('title', 'إدارة المواقع') @section('content')

إدارة المواقع

@if($locations->count() > 0)
@forelse($locations as $location) @empty @endforelse
# الاسم (عربي) الاسم (إنجليزي) العنوان الهاتف الحالة الإجراءات
{{ $location->id }} {{ $location->name_ar }} {{ $location->name_en }} {{ Str::limit($location->address, 50) }} {{ $location->phone ?? '-' }} {{ $location->is_active ? 'نشط' : 'غير نشط' }}

لا توجد مواقع مسجلة

قم بإضافة موقع جديد للبدء

@else

لا توجد مواقع

ابدأ بإضافة أول موقع لشركتك

@endif
@push('scripts') @endpush @endsection