@extends('layouts.admin') @section('page_title', $isRtl ? 'الطلبات' : 'Applications') @section('content')

{{ $isRtl ? 'قائمة الطلبات' : 'Applications List' }}

@forelse($applications as $app) @empty @endforelse
# {{ $isRtl ? 'الاسم' : 'Name' }} {{ $isRtl ? 'البنك' : 'Bank' }} {{ $isRtl ? 'الخدمة' : 'Service' }} {{ $isRtl ? 'المبلغ' : 'Amount' }} {{ $isRtl ? 'الحالة' : 'Status' }} {{ $isRtl ? 'التاريخ' : 'Date' }}
{{ $app->id }} {{ $app->full_name }} {{ $app->bank?->name }} {{ $app->service?->title }} {{ number_format((float) $app->amount) }} {{ $app->status }} {{ $app->created_at?->format('Y-m-d') }}
@csrf @method('DELETE')
{{ $isRtl ? 'لا توجد طلبات' : 'No applications' }}
{{ $applications->links() }}
@endsection