@extends('admin.layout.master') @section('content') @include('flash-message')

Roster View

@include("payroll.includes.report_print_excel_button")
{{--
--}}
@csrf @if(count($rosters)>0)
@php $i=1; @endphp @foreach ($rosters as $roster) @endforeach

{{$rosters->first()->emp_info->emp_name}}

#SL Day Shift Start Date End Date Department Type
{{$i++}} {{week_days()[$roster->day_id]}} {{$roster->fetch_shift_info_data ? $roster->fetch_shift_info_data->name : null}} {{$roster->start_date}} {{$roster->end_date}} {{$roster->department ? $roster->department->name : null}} {{$roster->type==1 ? "Exchange" : ($roster->type==2 ? "Replace" : ($roster->type==3 ? "OT" : "Regular")) }}
@endif
@endsection