@extends('layouts.user') @push('css') @endpush @section('title')

@lang('Payout History')

@lang('Dashboard')
@endsection @section('content')
@if (count($withdraws) == 0) @else @foreach ($withdraws as $key=>$data) @endforeach @endif
@lang('Transaction no') @lang('Payment Method') @lang('Amount') @lang('Fee') @lang('Status') @lang('Options')

{{__('No Data Found')}}

{{ strtoupper($data->txnid) }}
{{ ucfirst($data->method) }}
{{ convertedPrice($data->amount,$data->currency_id) }}
{{ convertedPrice($data->fee,$data->currency_id) }}
@if ($data->status == 'pending') @lang('Pending') @elseif($data->status == 'completed') @lang('Completed') @else @lang('Rejected') @endif
@endsection @push('js') @endpush