#
        
        
            {{ trans('plugins/ecommerce::payment.order') }}
        
        
            {{ trans('plugins/ecommerce::payment.charge_id') }}
        
        
            {{ trans('plugins/ecommerce::payment.amount') }}
        
        
            {{ trans('plugins/ecommerce::payment.payment_method') }}
        
        
            {{ trans('plugins/ecommerce::payment.status') }}
        
        @if (auth()->user()->hasPermission('payment.show'))
            
                {{ trans('plugins/ecommerce::payment.action') }}
            
        @endif
    
    
        @forelse ($payments as $payment)
            
                
                    {{ $loop->iteration }}
                
                
                    @if ($payment->order->id)
                        @if (auth()->user()->hasPermission('orders.edit'))
                            
                                {{ $payment->order->code }} 
                            
                        @else
                            {{ $payment->order->code }}
                        @endif
                    @else
                        —
                    @endif
                
                
                    {{ $payment->charge_id }}
                
                
                    {{ $payment->amount }} {{ $payment->currency }}
                
                
                    @if ($paymentMethod = $payment->payment_channel->label())
                        {{ $paymentMethod }}
                    @else
                        —
                    @endif
                
                
                    {!! BaseHelper::clean($payment->status->toHtml()) !!}
                
                @if (auth()->user()->hasPermission('payment.show'))
                    
                            
                    
                @endif
            
        @empty
            
                
                    {{ trans('plugins/ecommerce::payment.no_data') }}
                
            
        @endforelse
    
@push('footer')
    
        
            {!! BaseHelper::clean(trans('plugins/ecommerce::customer.verify_email.confirm_description')) !!}
        
    
@endpush