Borderô n° {{ $openShowSession->num_bordero }} - Informações do Evento
{{ $openShowSession->public ? 'Público' : 'Privado/Ensaio' }}
Evento: {{ $openShowSession->showing->show->name }} |
Período:
{{ \Carbon\Carbon::parse($openShowSession->start_date)->format('d/m/Y H:i') }} -
{{ \Carbon\Carbon::parse($openShowSession->end_date)->format('d/m/Y H:i') }} |
Proponente/Ocupante: {{ $openShowSession->showing->show->producer->name }} |
Número do processo: {{ $openShowSession->showing->number_process }} |
Tipo de evento: {{ $openShowSession->showing->show->typeShow->name }} |
Classificação: {{ $openShowSession->showing->show->ageRating->name }} |
Local: {{ $local->name }} |
Data e Hora da Impressão: {{ \Carbon\Carbon::now()->format('d/m/Y H:i') }}
|
@if ($semIngressos)
Espetáculo foi realizado em ambiente público e sem venda de ingressos.
@endif
Resumo de Vendas
Tipo de Ingresso |
Quantidade |
Preço Unitário |
Total |
@foreach ($sales as $sale)
{{ ucfirst($sale['description']) }} |
{{ $sale['quantity'] }} |
R$
{{ number_format($sale['price'], 2, ',', '.') }} |
R$
{{ number_format($sale['total'], 2, ',', '.') }} |
@endforeach
Total de vendas: |
R$ {{ number_format($grandTotal, 2, ',', '.') }}
|
@if ($openShowSession->reason_cancel_id)
{{ $openShowSession->reason_cancel->reason }}
@endif
@if ($openShowSession->observations && count($openShowSession->observations) > 0)
Observações
{{-- Exibe as observações do showSession --}}
@foreach ($openShowSession->observations as $observation)
- {{ $observation->observation }}
@endforeach
@endif
Bilheteiro(a):
@if (!$openShowSession->place->settings->show_office_in_bordero)
@endif
{{ $openShowSession->place->settings->show_office_in_bordero
? ($openShowSession->details->ticketOfficer
? $openShowSession->details->ticketOfficer->name
: '')
: '' }}
{{ $openShowSession->details && $openShowSession->details->occupant ? 'Ocupante:' : '' }}
{{ $openShowSession->details
? ($openShowSession->details->occupant
? $openShowSession->details->occupant
: 'Proponente/Ocupante')
: 'Proponente/Ocupante' }}
Secretário(a) Teatral / Administrador(a):
@if (!$openShowSession->place->settings->show_responsible_in_bordero)
@endif
{{ $openShowSession->place->settings->show_responsible_in_bordero
? ($openShowSession->place->settings->responsible_id
? $openShowSession->place->settings->placeResponsible->name
: '')
: '' }}