@extends(getTemplate() .'.panel.layouts.panel_layout')
@section('content')
{{ trans('financial.account_summary') }}
@if(!$authUser->financial_approval)
{{ trans('financial.account') }} | {{ trans('public.type') }} | {{ trans('panel.amount') }} ({{ $currency }}) | {{ trans('public.status') }} | {{ trans('admin/main.actions') }} |
---|---|---|---|---|
@if(!empty($payout->userSelectedBank->bank))
{{ $payout->userSelectedBank->bank->title }}
@else
-
@endif
{{ dateTimeFormat($payout->created_at, 'j M Y | H:i') }}
|
{{ trans('public.manual') }} | {{ handlePrice($payout->amount, false) }} | @switch($payout->status) @case(\App\Models\Payout::$waiting) {{ trans('public.waiting') }} @break; @case(\App\Models\Payout::$reject) {{ trans('public.rejected') }} @break; @case(\App\Models\Payout::$done) {{ trans('public.done') }} @break; @endswitch | {{-- For Modal --}} @if(!empty($payout->userSelectedBank->bank)) @php $bank = $payout->userSelectedBank->bank; @endphp @endif @if(!empty($bank->title)) @foreach($bank->specifications as $specification) @php $selectedBankSpecification = $payout->userSelectedBank->specifications->where('user_selected_bank_id', $payout->userSelectedBank->id)->where('user_bank_specification_id', $specification->id)->first(); @endphp @if(!empty($selectedBankSpecification)) @endif @endforeach @endif |
{{ trans('financial.payout_confirmation_hint') }}