@extends('layouts.merchant')
@section('title')
@lang('Merchant Dashboard')
@endsection
@section('breadcrumb')
@lang('Merchant Dashboard')
| @lang('Date') | @lang('Transaction ID') | @lang('Description') | @lang('Remark') | @lang('Amount') | @lang('Details') | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{dateFormat($trx->created_at,'d-M-Y')}} | {{$trx->trnx}} | {{__($trx->details)}} | {{ucwords(str_replace('_',' ',$trx->remark))}} | {{$trx->type}} {{amount($trx->amount,$trx->currency->type,2)}} {{$trx->currency->code}} | |||||||
| @lang('No data found!') | |||||||||||
| @lang('Transaction') | @lang('Amount') | @lang('Charge') | @lang('Total Amount') | @lang('Method Name') | @lang('Status') | @lang('Date') | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{$item->trx}} | {{amount($item->amount,$item->currency->type,2)}} {{$item->currency->code}} | {{amount($item->charge,$item->currency->type,2)}} {{$item->currency->code}} | {{amount($item->total_amount,$item->currency->type,2)}} {{$item->currency->code}} | {{$item->method->name}} | @if($item->status == 1) @lang('Accepted') @elseif($item->status == 2) @lang('Rejected') @else @lang('Pending') @endif | {{dateFormat($item->created_at)}} | |||||
| @lang('No data found!') | |||||||||||