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

{{ __('Withdraws') }}

{{ __('Shop Withdraw Information') }}

{{ __('Amount') }}: {{ showCurrency($withdraw->amount) }}
{{ __('Requested At') }}: {{ $withdraw->created_at }}
{{ __('') }}:
{{ $withdraw->reason }}
@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->shop->user->name }}
{{ __('Email') }}: {{ $withdraw->shop->user->email }}
{{ __('Phone') }}: {{ $withdraw->shop->user->phone }}

{{ __('Shop Info') }}

{{ __('Name') }}: {{ $withdraw->shop->name }}
{{ __('Logo') }}:
@csrf
@endsection