@extends('layouts.app2') @section('title', 'Page Title') @section('sidebar') @stop @section('content')

MINHAS RESERVAS

Informações da Reserva
Participante: {{ $participantDetail == null ? '' : $participantDetail->name }}
Telefone: {{ $participantDetail == null ? '' : $participantDetail->telephone }}
Meu(s) bilhete(s) pago(s):
@foreach ($orderPayedParticipants as $orderParticipant) @if ($orderParticipant->status == 'Aprovado')

PEDIDO#{{ $orderParticipant->id }} - PAGAMENTO APROVADO

COTAS: @foreach ($participantPayed as $payedNumbers) @if ($orderParticipant->key_pix == $payedNumbers->key_pix) {{ $payedNumbers->number }} @endif @endforeach

@else Você ainda não comprou nenhuma cota para esse sorteio! @endif @endforeach
Meu(s) bilhete(s) aguardando pagamento:

@foreach ($orderParticipants as $orderParticipant) @if ($orderParticipant->status == 'Pendente')

PEDIDO#{{ $orderParticipant->id }} - AGUARDANDO PAGAMENTO

COTAS: @foreach ($participantReserveds as $participantReserved) @if ($orderParticipant->key_pix == $participantReserved->key_pix) {{ $participantReserved->number }} @endif @endforeach

@endif @endforeach
@if ($participantReserveds == '[]') @else @endif
Informações do Sorteio
Sorteio: {{ $product->name }}
@stop