@extends('front.layouts.app') @push('title', __('Wallet History')) @section('content') @include('front.profile.header')
@if ($wallet->count() > 0)
@foreach ($wallet as $key => $item) @endforeach
#ID {{ __('Amount Paid') }} {{ __('Payment Method') }} {{ __('Date') }}
{{ $item->order_id }} {{config('app.currency_symbol')}}{{ money($item->total) }} {{ $item->payment_method ?? __('-') }} {{ $item->created_at->format('d M, Y H:i') }}

{{ $wallet->links() }}
@else
{{ __('No wallet history found.') }} {{ __('Add Money') }}
@endif
@endsection