| {{ $s->opened_at->format('d/m/Y H:i') }} |
{{ $s->closed_at ? $s->closed_at->format('d/m/Y H:i') : '—' }} |
{{ $s->user?->name ?? '—' }} |
R$ {{ number_format($s->opening_amount, 2, ',', '.') }} |
{{ $s->expected_amount ? 'R$ '.number_format($s->expected_amount,2,',','.') : '—' }} |
{{ $s->closing_amount !== null ? 'R$ '.number_format($s->closing_amount,2,',','.') : '—' }} |
@if($s->difference !== null)
{{ ($s->difference >= 0 ? '+' : '') . 'R$ '.number_format(abs($s->difference),2,',','.') }}
@else —
@endif
|
{{ $s->status === 'open' ? 'Aberto' : 'Fechado' }}
|
@empty