@extends('layouts.app', ['path' => 'attendance.shift']) @section('content')
@if ($errors->any()) @if ( $errors->has('shift_name') || $errors->has('shift_time_in') || $errors->has('shift_time_out') || $errors->has('break_time_range_from') || $errors->has('break_time_range_to') || $errors->has('break_duration') || $errors->has('late_arrival_grace') || $errors->has('early_leaving_grace')) @else
@foreach ($errors->all() as $error) {!! $error !!} @endforeach
@endif @endif {{-- @session('success') @endsession @if ($errors->any())
@foreach ($errors->all() as $error) {!! $error !!} @endforeach
@endif --}} @include('partials.new_alerts')
Schedule Timing List
@if (!empty($shifts)) @foreach ($shifts as $shift) @endforeach @else @endif
Name Start Time End Time Number of Employees Accept Extra Hours Status Actions
{{ $shift['name'] }}

{{ $shift['start_time'] }}

{{ $shift['end_time'] }}

{{ $shift['number_of_employees'] }}
@include('compaines.attendance.modals.add-shift') @include('compaines.attendance.modals.delete-confirmation') @endsection @push('scripts') @endpush