@extends('layouts.master') @section('title', 'eventos') @section('content')

Eventos {{ Auth::User()->name}}

Mis Eventos

@if(count(Auth::User()->eventosRelacionesPublicas)) @foreach (Auth::User()->eventosRelacionesPublicas as $key => $evento) @endforeach
Nombre Fecha Tu Link Invitados
{{ $evento->nombre }} {{ date('d/m/y',strtotime($evento->fecha)) }}
{{ date('H:i',strtotime($evento->fecha)) }}
hash."/".Hashids::encode(Auth::User()->id)) }}" target='_blank' style="color:inherit;">
@else

No Existen Registros


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