@extends('design_1.panel.layouts.panel') @push('styles_top') @endpush @section('content')
@include('design_1.panel.financial.payout.ready_to_payout')
@include('design_1.panel.financial.payout.statistics')
@if(!empty($payouts) and !$payouts->isEmpty())

{{ trans('financial.payouts_history') }}

{{-- Filters --}} {{-- List Table --}}
@foreach($payouts as $payoutRow) @include('design_1.panel.financial.payout.table_items', ['payout' => $payoutRow]) @endforeach
{{ trans('financial.account') }} {{ trans('public.type') }} {{ trans('panel.amount') }} {{ trans('public.status') }} {{ trans('admin/main.actions') }}
{{-- Pagination --}}
@else @include('design_1.panel.includes.no-result',[ 'file_name' => 'payout.svg', 'title' => trans('financial.payout_no_result'), 'hint' => nl2br(trans('financial.payout_no_result_hint')), ]) @endif
payout_request
{{ trans('update.review_payout_information') }}

{{ trans('update.review_payout_information_hint') }}

{{ trans('update.payout_amount') }} {{ handlePrice($readyPayout ?? 0) }}
@if(!empty($authUser->selectedBank) and !empty($authUser->selectedBank->bank))
{{ trans('financial.account') }} {{ $authUser->selectedBank->bank->title }}
@foreach($authUser->selectedBank->bank->specifications as $specification) @php $selectedBankSpecification = $authUser->selectedBank->specifications->where('user_selected_bank_id', $authUser->selectedBank->id)->where('user_bank_specification_id', $specification->id)->first(); @endphp
{{ $specification->name }} {{ (!empty($selectedBankSpecification)) ? $selectedBankSpecification->value : '' }}
@endforeach @endif
@endsection @push('scripts_bottom') @endpush