@extends('layouts.master') @section('title', 'Seguridad - Eventos') @section('content')

Seguridad Eventos

Eventos Activos

@if(count($eventos)) @foreach ($eventos as $key => $evento) @if(date('d/m/Y',strtotime($evento->fecha)) == date('d/m/Y')) @else @endif @endforeach
Nombre Fecha   |     |   Invitados
{{ $evento->nombre }} {{ date('d/m - H:i',strtotime($evento->fecha)) }}{{ $evento->nombre }} {{ date('d/m - H:i',strtotime($evento->fecha)) }}{{ date('d/m/Y - H:i',strtotime($evento->fecha)) }} {{ count($evento->invitadosConfirmados) }}   |   {{ count($evento->invitadosRecepcionados) }}   |   {{ $evento->entradasCantidadTotal() }}
@else

No Existen Registros


@endif
@endsection @section('javascript') @endsection