@extends('layouts.admin')
@section('page_title', $isRtl ? 'الخدمات' : 'Services')
@section('content')
| {{ $isRtl ? 'الأيقونة' : 'Icon' }} |
{{ $isRtl ? 'العنوان' : 'Title' }} |
{{ $isRtl ? 'الرابط' : 'Slug' }} |
{{ $isRtl ? 'الترتيب' : 'Order' }} |
{{ $isRtl ? 'الحالة' : 'Status' }} |
|
@forelse($services as $service)
|
@if($service->icon)
@endif
|
{{ $service->title }} |
{{ $service->slug }} |
{{ $service->order }} |
@if($service->is_active)
{{ $isRtl ? 'نشط' : 'Active' }}
@else
{{ $isRtl ? 'معطل' : 'Inactive' }}
@endif
|
|
@empty
| {{ $isRtl ? 'لا توجد خدمات بعد' : 'No services yet' }} |
@endforelse
{{ $services->links() }}
@endsection