@extends('backend.layouts.main') @section('title') {{ __('Widthdrawal') }} {{ $withdrawal->id }} :: {{ __('Info') }} @endsection @section('content')
| {{ __('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 }} |