@extends('layouts.index') @section('estilos') @stop @section('menu') @include('menu.index') @stop @section('content')
Ver detalle agenda seleccionada (Solo vigentes)
@php($aux_id="") @foreach ($agendas as $agenda) @if($agenda->id != $aux_id) @if ($loop->iteration > 1)
@endif
{{date("d-m-Y", strtotime($agenda->fecha))}}
@if ($agenda->estado_agenda_id != 3)
{{'Bloque'}}
{{date("H:i", strtotime($agenda->hora_inicio))}}
{{date("H:i", strtotime($agenda->hora_termino))}}
{{$agenda->estado_agenda}}
@endif @php($aux_id=$agenda->id) @else @if ($agenda->estado_agenda_id != 3)
{{'Bloque'}}
{{date("H:i", strtotime($agenda->hora_inicio))}}
{{date("H:i", strtotime($agenda->hora_termino))}}
{{$agenda->estado_agenda}}
@endif @endif @endforeach
@stop @section('scripts') @endsection