@extends('layouts.frontend.frontend_main') @section('title') @lang('frontend_lang.payment_history') @endsection @push('styles') @endpush @section('content')
@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') |