@extends('layouts.frontend.frontend_main') @section('title') @lang('frontend_lang.payment_history') @endsection @push('styles') @endpush @section('content')
@include('layouts.frontend.profile_sidebar')

 @lang('frontend_lang.payment_history')

@forelse($paymentHistories as $paymentHistory) @empty @endforelse
@lang('frontend_lang.transaction_id') Transaction Date Amount Status
{{ $paymentHistory->pay_id }} {{ $paymentHistory->created_at->translatedFormat(config('defaults.time_format')) }} {{ showAmount($paymentHistory->amount) }} {{ $paymentHistory->status != 9 ? 'Failed' : 'Success' }}
@lang('frontend_lang.no_order_found')
@lang('frontend_lang.continue_shopping')
{{ $paymentHistories->links() }}
@endsection @section('js') @endsection