@extends('layouts.admin')
@section('page_title', $isRtl ? 'الطلبات' : 'Applications')
@section('content')
{{ $isRtl ? 'قائمة الطلبات' : 'Applications List' }}
| # |
{{ $isRtl ? 'الاسم' : 'Name' }} |
{{ $isRtl ? 'البنك' : 'Bank' }} |
{{ $isRtl ? 'الخدمة' : 'Service' }} |
{{ $isRtl ? 'المبلغ' : 'Amount' }} |
{{ $isRtl ? 'الحالة' : 'Status' }} |
{{ $isRtl ? 'التاريخ' : 'Date' }} |
|
@forelse($applications as $app)
| {{ $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') }} |
|
@empty
| {{ $isRtl ? 'لا توجد طلبات' : 'No applications' }} |
@endforelse
{{ $applications->links() }}
@endsection