{{ __('Influencer withdraw') }}
@if ($withdraw->status == 1) @endif
{{ __('influencer') }} {{ $withdraw?->user?->name }}
{{ __('Withdraw Method') }} {{ $withdraw->method }}
{{ __('Withdraw Charge') }} {{ $withdraw->withdraw_charge }}%
{{ __('Withdraw Charge Amount') }} {{ currency($withdraw->total_amount - $withdraw->withdraw_amount) }}
{{ __('Total Amount') }} {{ currency($withdraw->total_amount) }}
{{ __('Withdraw Amount') }} {{ currency($withdraw->withdraw_amount) }}
{{ __('Status') }} @if ($withdraw->status == 1) {{ __('Success') }} @else {{ __('Pending') }} @endif
{{ __('Requested Date') }} {{ formattedDate($withdraw->created_at) }}
{{ __('Approved Date') }} {{ $withdraw->approved_date }}
{{ __('Account Information') }} {!! clean(nl2br($withdraw->account_info)) !!}
@if ($withdraw->status == 'pending') {{ __('Approve withdraw') }} @endif {{ __('Delete withdraw request') }}