@extends('layout.main')
@section('title', 'Detail Lembar Kerja')
@section('prev-page')
Home
-
Daftar Lembar Kerja
@endsection
@section('content')
@if (!empty($accessRestricted))
@else
@endif
Item Pekerjaan
@if ($detail->status == 0)
@endif
Report harian yang dibuat dengan informatif akan memudahkan atasan menilai pekerjaan yang dilakukan dan kontribusi dalam operasional keseluruhan
| Kategori |
Detail Pekerjaan |
Durasi |
|
@forelse($detail->works as $work)
| {{ $work->category->name }} |
{!! nl2br($work->description) !!} |
{{ $work->duration->value }} |
@if ($detail->status == 0 && empty($accessRestricted))
@endif
|
@empty
| Belum ada data Item Pekerjaan. |
@endforelse
| Total |
{{ round($detail->total_duration / 60, 2) }} jam |
|
@forelse($detail->works as $work)
{!! nl2br($work->description) !!}
@if ($detail->status == 0 && empty($accessRestricted))
@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')