@extends('layouts.default') @section('title','员工个人信息') @section('content')
星期 | 应上班时间 | 应下班时间 | ||
---|---|---|---|---|
周{{ $workday->workday_name }} | @if ($workday->work_time != null){{ date("H:i",strtotime($workday->work_time)) }} | @else休息 | @endif @if ($workday->home_time != null){{ date("H:i",strtotime($workday->home_time)) }} | @else休息 | @endif
应工作时长:{{ $total_duration[$key] }}小时
@endforeach @stop