@extends('layouts.user.account') @section('page_title', __('labels.wallet')) @section('page_content') {{ __('wallet.history-desc') }} @include('user.wallet.parts.tabs')
{{ __('table.amount') }} {{ __('table.payment-method') }} {{ __('table.fee') }} {{ __('table.status') }} {{ __('table.date') }} {{ __('table.completed-at') }}
{{ __('labels.actions') }}
@unless($cashoutHistory->isEmpty()) @foreach ($cashoutHistory as $item) {{ $item->formatted_amount }} {{ $item->method_label }} {{ $item->fee_percentage }} % {{ $item->status_label }} {{ $item->formatted_request_date }} {{ $item->formatted_completed_date }}
{{ __('labels.show') }}
@endforeach @else @endif
@unless($cashoutHistory->isEmpty())
{{ $cashoutHistory->withQueryString()->links('pagination.tailwind') }}
@endif
@endsection