@extends('site.layouts.app') @section('title', 'My orders') @section('content')
@include('site.customer.sidebar')
Visa Orders
@foreach ($orders as $key => $row) @php $country = App\Models\Country::where('id', $row->country_id)->first(); $visa = App\Models\VisaCategory::where('id', $row->visa_category_id)->first(); @endphp @endforeach
Order Date Visa Country Visa Status Total Actions
ET{{ $row->id }} {{ date('d-m-Y H:i:s A', strtotime($row->dated)) }} {{ optional($visa)->name}} {{ str_replace('_', '', optional($country)->name) }} @if ($row->status == 'pending') Pending @else Approved @endif {{ $row->currency }} {{ $row->total }} View
{{ $orders->links('pagination::bootstrap-5') }}
@endsection