@extends('layout.backend') @section('title', 'Plantões') @section('scripts') @parent @endsection @section('content') {{-- BARRA DE BOTÕES --}} Gerar Plantões {{-- ALERTAS --}} @include('components.widget.alerts') {{-- FILTROS --}} {{__('common.filter.type')}} {{__('common.filter.region')}} {{__('common.filter.member')}} {{-- CORPO --}} @foreach($oncalls as $oncall)
{{ $oncall->start_date->format('d/m/y') . " a " . $oncall->end_date->format('d/m/y') }}
(int) $oncall->origin === 1, 'fa-user-group' => (int) $oncall->origin === 2, ]) "> {{ (int) $oncall->origin === 1 ? 'Colih' : 'GVP' }}
{{$oncall->region->name ?? 'Todas'}}
@foreach($oncall->users as $user) {{ isset($user->user->name) ? $user->user->shortName : '' }}
@endforeach
{{-- ações --}} @canany(['edit-oncall']) @endcan @canany(['delete-oncall']) @endcan
@endforeach
{{--- DELETE MODAL --}} @endsection