@extends ('../welcome') @section('content')

Terms and Conditions Management

Add New Terms
@if (session('success')) @endif @if (session('error')) @endif
@foreach ($terms as $term) @endforeach
# Type Title (EN) Title (AR) Status Created At Actions
{{ $loop->iteration }} @if($term->identifier == 'terms') Terms & Conditions @elseif($term->identifier == 'privacy') Privacy Policy @else {{ $term->identifier }} @endif {{ Str::limit($term->title, 50) }} {{ Str::limit($term->title_ar ?? 'N/A', 50) }} @if ($term->is_active) Active @else Inactive @endif {{ $term->created_at->format('Y-m-d H:i') }}
@csrf @method('DELETE')
{{ $terms->links() }}
@endsection @section('scripts') @endsection