@php $title = 'Shifts' @endphp @section('title') {{$title}} @endsection @extends('layout') @section('main-content')

{{$title}}

@foreach($shifts as $shift) @endforeach
Sl.No Name Start Time End Time Shift Days Status Action
{{$loop->iteration}} {{$shift->title}} {{$shift->start_time}} {{$shift->end_time}}

Sun

Mon

Tue

Wed

Thu

Fri

Sat

@if($shift->status) Active @else Inactive @endif
@endsection