@extends('template.portal.layout') @section('content-body')
@include('alerts.index')

{{ $evento['nombre'] }}

{!! $evento['detalle'] !!}

Ubicacion: {{ $evento['lugar'] }}
@if ($evento['fecha_inicio'] != $evento['fecha_fin'])
Fecha: {{ \Jenssegers\Date\Date::parse($evento['fecha_inicio'])->format('l j, F Y') }} - {{ \Jenssegers\Date\Date::parse($evento['fecha_fin'])->format('l j, F Y') }}
@else
Fecha:
@endif @if($evento['pago'])
Costo: {{ number_format($evento['costo'], 2, '.', ',') }}
@endif @if($evento['video_url'])
@endif
@endsection @section('scripts') @include('sweet::alert') @endsection