@extends('layouts.admin') @section('page_title', $isRtl ? 'العروض' : 'Offers') @section('content')

{{ $isRtl ? 'قائمة العروض' : 'Offers List' }}

{{ $isRtl ? 'إضافة عرض' : 'Add Offer' }}
@forelse($offers as $offer) @empty @endforelse
{{ $isRtl ? 'البنك' : 'Bank' }} {{ $isRtl ? 'الخدمة' : 'Service' }} {{ $isRtl ? 'العنوان' : 'Title' }} APR {{ $isRtl ? 'أقصى مبلغ' : 'Max Amount' }} {{ $isRtl ? 'الحالة' : 'Status' }}
{{ $offer->bank?->name }} {{ $offer->service?->title }} {{ $offer->title }} {{ $offer->apr }} {{ number_format((float) $offer->max_amount) }} @if($offer->is_active) {{ $isRtl ? 'نشط' : 'Active' }} @else {{ $isRtl ? 'معطل' : 'Inactive' }} @endif
@csrf @method('DELETE')
{{ $isRtl ? 'لا توجد عروض بعد' : 'No offers yet' }}
{{ $offers->links() }}
@endsection