@extends('layouts.back-end.app') @section('content')

{{ \App\CPU\translate('refund_transaction_table')}} {{$refund_transactions->total()}}

@foreach ($refund_transactions as $key=>$refund_transaction) @endforeach
{{\App\CPU\translate('SL#')}} {{\App\CPU\translate('refund_id')}} {{\App\CPU\translate('order_id')}} {{ \App\CPU\translate('payment_method') }} {{\App\CPU\translate('payment_status')}} {{\App\CPU\translate('amount')}} {{\App\CPU\translate('transaction_type')}}
{{$refund_transactions->firstItem()+$key}} @if ($refund_transaction->refund_id) {{$refund_transaction->refund_id}} @else {{\App\CPU\translate('not_found')}} @endif {{$refund_transaction->order_id}} {{str_replace('_',' ',$refund_transaction->payment_method)}} {{$refund_transaction->payment_status}} {{\App\CPU\Helpers::currency_converter($refund_transaction->amount)}} {{$refund_transaction->transaction_type}}
@if(count($refund_transactions)==0)
Image Description

{{ \App\CPU\translate('No_data_to_show')}}

@endif
@endsection