@extends('app') @section('content')
Llamada Visita Compromiso
@if(Auth::user()->is_admin)
{!!Form::select('management_id',[null=>'Todos las gerencias'] + $managements,null,['class'=>'form-control','id' => 'management'])!!}
@elseif(Auth::user()->is_manager)
{!!Form::select('executive_id',[null=>'Todos mis Ejecutivos']+ $executives,null,['class'=>'form-control','id' => 'executive'])!!}
@endif
@foreach ($weeks as $week)
@foreach ($week as $day)
@if ($day['disabled'])
@elseif ($day['holiday'])
@else
@endif
@if ($day['disabled']) @elseif ($day['holiday']) @else @endif {{$day['day']}}
@endforeach
@endforeach
@include('appointments.partials.modal_show') @include('appointments.partials.create_event_modal') @section('script') @stop @stop