@extends('layouts.app') @section('content')
Eventos
@if (Auth::user()->is_admin == '1') Criar Evento @endif
@if ($eventos->isNotEmpty()) @php $cont = 1; @endphp @foreach ($eventos as $evento) @php $cont++; @endphp @endforeach @endif
# Nome Descrição Participantes Ações
{{ $cont }} {{ $evento->nome }} {!! $evento->descricao !!} {{ $evento->eventosEmail ? $evento->eventosEmail->count() : 0 }}
@if ($eventos->IsEmpty())

Sem Eventos Cadastrados...

@endif
@endsection