@extends('layouts.user.account') @section('page_title', __('labels.credits')) @section('page_content') {{ __('payment.index-desc') }} @include('user.payment.parts.tabs')
{{ __('table.category') }} {{ __('table.amount') }} {{ __('table.platform-fee') }} {{ __('table.final-amount') }} {{ __('table.method') }} {{ __('table.status') }} {{ __('table.date') }} @unless($paymentHistory->isEmpty()) @foreach ($paymentHistory as $payment) {{ $payment->type_label }} {{ $payment->formatted_amount }} {{ $payment->formatted_platform_fee }} {{ $payment->formatted_final_amount }}
Logo {{ $payment->method_label }}
{{ $payment->status_label }} {{ $payment->formatted_date }}
@endforeach @else @endif
@unless($paymentHistory->isEmpty())
{{ $paymentHistory->withQueryString()->links('pagination.tailwind') }}
@endif
@endsection