@extends('admin.layout')
@section('title', 'إدارة المواقع')
@section('content')
إدارة المواقع
@if($locations->count() > 0)
| # |
الاسم (عربي) |
الاسم (إنجليزي) |
العنوان |
الهاتف |
الحالة |
الإجراءات |
@forelse($locations as $location)
| {{ $location->id }} |
{{ $location->name_ar }}
|
{{ $location->name_en }}
|
{{ Str::limit($location->address, 50) }}
|
{{ $location->phone ?? '-' }}
|
{{ $location->is_active ? 'نشط' : 'غير نشط' }}
|
|
@empty
لا توجد مواقع مسجلة
قم بإضافة موقع جديد للبدء
|
@endforelse
@else
لا توجد مواقع
ابدأ بإضافة أول موقع لشركتك
@endif
@push('scripts')
@endpush
@endsection