@extends('admin.master_layout') @section('title')
{{ __('translate.Manage Withdraw') }} >> {{ __('translate.Withdraw Detail') }}
@endsection @section('body-content')
{{ __('translate.Seller') }} |
{{ html_decode($withdraw?->seller?->name) }} |
{{ __('translate.Total Amount') }} |
{{ currency($withdraw->total_amount) }} |
{{ __('translate.Withdraw Amount') }} |
{{ currency($withdraw->withdraw_amount) }} |
{{ __('translate.Withdraw Charge') }} |
{{ currency($withdraw->charge_amount) }} |
{{ __('translate.Crated at') }} |
{{ $withdraw->created_at->format('d F Y') }} |
{{ __('translate.Withdraw Method') }} |
{{ $withdraw->withdraw_method_name }} |
{{ __('translate.Bank/Account Info') }} |
{!! clean(nl2br(html_decode($withdraw->description))) !!} |
{{ __('translate.Status') }} |
@if ($withdraw->status == 'approved') {{ __('translate.Approved') }} @elseif ($withdraw->status == 'rejected') {{ __('translate.Rejected') }} @else {{ __('translate.Pending') }} @endif |
{{ __('translate.Action') }} |
@if ($withdraw->status == 'pending') {{ __('translate.Make Approval') }} {{ __('translate.Make Reject') }} @endif {{ __('translate.Delete') }} |
{{ __('translate.Are you realy want to delete this item?') }}
{{ __('translate.Are you realy want to approved this withdraw?') }}
{{ __('translate.Are you realy want to rejected this withdraw?') }}