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

{{ __('Withdraws') }}

{{ __('Withdraw Information') }}

{{ __('Amount') }}: {{ showCurrency($withdraw->amount) }}
{{ __('Requested At') }}: {{ $withdraw->created_at }}
{{ __('reason') }}:
{{ $withdraw->reason ?? 'N/A' }}
@if ($withdraw->status == 'pending') @hasPermission('admin.withdraw.update') @else {{ __('Pending') }} @endhasPermission @else @if ($withdraw->status == 'pending') {{ __($withdraw->status) }} @elseif($withdraw->status == 'approved') {{ __($withdraw->status) }} @else {{ __($withdraw->status) }} @endif @endif

{{ __('Others Info') }}

{{ __('Contact Number') }}: {{ $withdraw->contact_number }}
{{ __('Name') }}: {{ $withdraw->name }}

{{ __('User Info') }}

{{ __('Name') }}: {{ $withdraw->user->name }}
{{ __('Email') }}: {{ $withdraw->user->email }}
{{ __('Phone') }}: {{ $withdraw->user->phone }}
@csrf
= @endsection