@include('global.header-links')
@include('partials.sidebar') @include('partials.header')

Timesheet

Timesheet

{{-- Display Errors and Success Messages --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('error')) @endif @if (session('success')) @endif @foreach ($timesheets as $timesheet) @if (isset($timesheet->user)) @endif @endforeach
Name Shift Start Time End Time Employment Type Break Duration
{{$timesheet->user->name}} {{$timesheet->shift_name}} {{$timesheet->start_time}} {{$timesheet->end_time}} {{$timesheet->employment_type}} {{$timesheet->break_duration}}
@include('partials.footer')
@include('global.footer-links')