@extends('layouts.admin') @section('page_title', $isRtl ? 'روابط التواصل' : 'Social Links') @section('content')

{{ $isRtl ? 'قائمة الروابط' : 'Social Links List' }}

{{ $isRtl ? 'إضافة رابط' : 'Add Link' }}
@forelse($links as $link) @empty @endforelse
{{ $isRtl ? 'المنصة' : 'Platform' }} URL {{ $isRtl ? 'الأيقونة' : 'Icon' }} {{ $isRtl ? 'الترتيب' : 'Order' }} {{ $isRtl ? 'الحالة' : 'Status' }}
{{ $link->platform }} {{ $link->url }} @if($link->icon) {{ $link->icon }}@endif {{ $link->order }} @if($link->is_active) {{ $isRtl ? 'نشط' : 'Active' }} @else {{ $isRtl ? 'معطل' : 'Inactive' }} @endif
@csrf @method('DELETE')
{{ $isRtl ? 'لا توجد روابط بعد' : 'No links yet' }}
{{ $links->links() }}
@endsection