@extends('layouts.merchant') @section('title') @lang('Withdraw History') @endsection @section('breadcrumb')

@lang('Withdraw History')

@endsection @section('content')
@forelse ($withdrawals as $item) @empty @endforelse
@lang('Transaction ID') @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!')
@if ($withdrawals->hasPages()) {{$withdrawals->links('merchant.partials.paginate')}} @endif
@endsection @push('script') @endpush