{{ __('Payouts') }} {{ __('Manage and track payouts for service providers') }}
@csrf @method('PUT')
{{--
{{ __('Pending') }}
$5,20,000
{{ __('Last Payout') }}
$0.00
--}}

{{ __('Payout Methods') }}

@php $totalAmount = $methodAmounts->sum('method_amount'); $base = $totalAmount / 3; $methodAmounts->each(function ($item) use ($base) { $item->percentage = round(($item->method_amount / $base) * 100, 2); }); @endphp @foreach ($methodAmounts as $item) @endforeach
@foreach ($methodAmounts as $item)
@endforeach
{{ __('Without payout method') }}
{{ __('Stripe Connect') }}
{{ __('Bank Transfer') }}
@foreach ($withdraws as $withdraw) @endforeach
{{ __('Created at') }} {{ __('Total Amount') }}
{{ \Carbon\Carbon::parse($withdraw->date)->diffForHumans() }} {{ $withdraw['amount'] }}