@php
$title = 'Shifts'
@endphp
@section('title') {{$title}} @endsection
@extends('layout')
@section('main-content')
| Sl.No |
Name |
Start Time |
End Time |
Shift Days |
Status |
Action |
@foreach($shifts as $shift)
| {{$loop->iteration}} |
{{$shift->title}} |
{{$shift->start_time}} |
{{$shift->end_time}} |
Sun
Mon
Tue
Wed
Thu
Fri
Sat
|
@if($shift->status)
Active
@else
Inactive
@endif
|
|
@endforeach
@endsection