@extends('layouts.backend') @section('styles') @endsection @section('page-header')

Employee OverTime

Add Overtime
@endsection @section('content')
@php $count = 1; @endphp @foreach ($overtimes as $overtime) @php $count++; @endphp @endforeach
# Name OT Date OT Hours Description Actions
{{$count}} {{date_format(date_create($overtime->overtime_date),"D M Y")}} {{$overtime->hours}} {{substr($overtime->description,0,10).' ....'}}
@endsection @section('scripts') @endsection