@extends('layouts.app')
@section('content')
@include('layouts.cdn.fullcalendar-css')
@if(\App\Services\Permissions\PermissoesService::hasPermission(\App\Services\Permissions\PermissoesService::USR_TipoUsuario))
@endif
{!! Layout::openCard() !!}
@foreach($listaLegenda as $itemLegenda)
@php(
$cor = ($itemLegenda instanceof \App\Models\Profissional\Profissional ? $itemLegenda->cor() : $itemLegenda->cor)
)
{{$itemLegenda->nome}}
@endforeach
{!! Layout::closeCard() !!}
{!! Layout::buttonPreviousIcon() !!}
@push('scripts')
@include('layouts.cdn.fullcalendar-js')
@endpush
@stop