@extends('layout.main') @section('title', 'Detail Lembar Kerja') @section('prev-page') Home - Daftar Lembar Kerja @endsection @section('content')
ID Lembar Kerja
{{ $detail->report_number }}
Nama
{{ $detail->employee->name }}
Hari Kerja
{{ \Carbon\Carbon::parse($detail->created)->locale('id')->translatedFormat('l, d M Y') }}
Item Pekerjaan
@if ($detail->status == 0) @endif
@forelse($detail->works as $work)
{{ $work->category->name }} {{ $work->duration->value }}
{!! nl2br($work->description) !!}
@if ($detail->status == 0) @endif
@empty
Belum ada data Item Pekerjaan.
@endforelse @if ($detail->works->count() > 0)
Total Durasi {{ round($detail->total_duration / 60, 2) }} jam
@endif
@if (!empty($metadata->links)) @endif
@endsection @section('other-scripts') @endsection