@extends('layouts.admin', ['title' => 'Fechamento '.str_pad($settlement->period_month, 2, '0', STR_PAD_LEFT).'/'.$settlement->period_year]) @section('content')
Bruto
R$ {{ number_format((float)$settlement->gross_amount,2,',','.') }}
Ajustes
R$ {{ number_format((float)$settlement->adjustments_amount,2,',','.') }}
Final
R$ {{ number_format((float)$settlement->net_amount,2,',','.') }}
| Influencer | Cupom | Bruto | Ajustes | Final | Pix | Pagamento | |
|---|---|---|---|---|---|---|---|
| {{ $item->influencer->name }} | {{ $item->influencer->activeCoupon?->coupon_code_original ?? '—' }} | R$ {{ number_format((float)$item->gross_amount,2,',','.') }} | R$ {{ number_format((float)$item->adjustments_amount,2,',','.') }} | R$ {{ number_format((float)$item->net_amount,2,',','.') }} | {{ $item->influencer->pix_key }} | {{ $item->payment_status->label() }} | @if($item->payment_status !== App\Enums\PaymentStatus::Paid) @else {{ $item->paid_at?->format('d/m/Y H:i') }} @endif |