@extends('backend.layouts.main') @section('title') {{ __('Widthdrawal') }} {{ $withdrawal->id }} :: {{ __('Info') }} @endsection @section('content') @if($withdrawal->parameters) @foreach($withdrawal->parameters as $key => $value) @endforeach @endif @if($withdrawal->response) @endif
{{ __('ID') }} {{ $withdrawal->id }}
{{ __('External ID') }} {{ $withdrawal->external_id }}
{{ __('Amount') }} {{ $withdrawal->amount }}
{{ __('Payment amount') }} {{ $withdrawal->payment_amount }}
{{ __('Payment currency') }} {{ $withdrawal->payment_currency }}
{{ __('Method') }} {{ $withdrawal->method->name }}
{{ __('Status') }} {{ $withdrawal->status_title }}
{{ $withdrawal->method->keyed_parameters[$key]->name ?? $key }} {{ isset($withdrawal->method->keyed_parameters[$key]) && $withdrawal->method->keyed_parameters[$key]->type == 'switch' ? ($value ? __('Yes') : __('No')) : $value }}
{{ __('API response') }}
{{ __('Created') }} {{ $withdrawal->created_at }}
{{ __('Updated') }} {{ $withdrawal->updated_at }}
@if($withdrawal->is_created)

{{ __('Workflow actions') }}

@csrf
@if($withdrawal->method->code == 'coinpayments')
@csrf
@endif
@csrf
@if($withdrawal->method->code == 'metamask' && !$withdrawal->external_id)
@endif @if($withdrawal->method->code == 'bsc' && !$withdrawal->external_id)
@endif @endif
{{ __('Back to all withdrawals') }}
@endsection @push('scripts') @endpush