@extends('layouts.vendor') @section('content')

@lang('My Withdraws')

+@lang('Withdrow Now')
@forelse($withdraws as $withdraw) @if ($withdraw->method != 'Bank') @else @endif @empty @endforelse
{{ __('Withdraw Date') }} {{ __('Method') }} {{ __('Account') }} {{ __('Amount') }} {{ __('Status') }}
{{ date('d-M-Y', strtotime($withdraw->created_at)) }} {{ $withdraw->method }}{{ $withdraw->acc_email }}{{ $withdraw->iban }}{{ $sign->sign }}{{ round($withdraw->amount * $sign->value, 2) }} {{ ucfirst($withdraw->status) }}
{{ __('No Withdraw Found') }}
@endsection