@extends('default.layout') @section('content')
@isset($funcionamento) Novo Dia @endisset

@csrf
@if(!isset($funcionamento)) @else @endif
@if($errors->has('inicio'))
{{ $errors->first('inicio') }}
@endif
@if($errors->has('fim'))
{{ $errors->first('fim') }}
@endif
@if(count($funcionamentos) == 7)

Todos os dias da semana adicionados!

@endif
@foreach($funcionamentos as $f) @endforeach
Dia Inicio Fim Status Ações
{{ $f->dia }} {{ $f->inicio_expediente }} {{ $f->fim_expediente }} @if($f->ativo) ATIVO @else DESATIVADO @endif @if($f->ativo) @else @endif
@endsection