@extends('layouts.app') @section('title', 'Time Sheet Details- Canindigo INC') @section('page-title', 'Time Sheet Details') @section('content')

Date

{{ $timeSheet->date->format('F d, Y') }}

{{ $timeSheet->date->format('l') }}

Project Code

{{ $timeSheet->project_code }}

Time

{{ date('g:i A', strtotime($timeSheet->start_time)) }} - {{ date('g:i A', strtotime($timeSheet->end_time)) }}

Total: {{ $timeSheet->total_hours }} hours

Overtime Weekdays

{{ $timeSheet->overtime_weekdays }} hours

Overtime Weekend

{{ $timeSheet->overtime_weekend }} hours

@if($timeSheet->description)

Description

{{ $timeSheet->description }}

@endif
@endsection