@if($evento->data_inicio == $evento->data_fim)
Perído de Inscrição:
{{ date("d/m/Y", strtotime($evento->data_inicio)) }} {{date("H:i", strtotime($evento->hora_inicio))}}
@else
Perído de Inscrição:
de {{ date("d/m/Y", strtotime($evento->data_inicio))}} {{date("H:i", strtotime($evento->hora_inicio))}}
até {{ date("d/m/Y", strtotime($evento->data_fim)) }} {{date("H:i", strtotime($evento->hora_fim))}}
@endif
Dia do Evento: {{ date("d/m/Y", strtotime($evento->dia_inicio)) }}
Horário: @if($evento->h_inicio == $evento->h_fim) {{date("H:i", strtotime($evento->h_inicio))}} @else {{ date("H:i", strtotime($evento->hora_inicio)) }} às {{date("H:i", strtotime($evento->h_fim))}} @endif
Local: {{ $evento->endereco }}
@if(count($modalidades) > 0)
@foreach($modalidades as $modalidade)
@if(count($modalidade['ingressos']) > 0)
@foreach($modalidade['ingressos'] as $ingresso)
Inscrições a partir de: {{$ingresso['inicio']}}
até: {{$ingresso['fim']}}
@if(count($ingresso['categorias']) > 0)
@foreach($ingresso['categorias'] as $categoria)
{{$categoria['nome']}} |
R$ {{$categoria['valor']}} |
@endforeach
@endif
@endforeach
@endif
@endforeach
@endif