@extends('layout.main')
@section('title', 'Detail Lembar Kerja')
@section('prev-page')
Home
-
Daftar Lembar Kerja
@endsection
@section('content')
Item Pekerjaan
@if ($detail->status == 0)
@endif
| Kategori |
Detail Pekerjaan |
Durasi |
|
@forelse($detail->works as $work)
| {{ $work->category->name }} |
{!! nl2br($work->description) !!} |
{{ $work->duration->value }} |
@if ($detail->status == 0)
@endif
|
@empty
| Belum ada data Item Pekerjaan. |
@endforelse
| Total |
{{ round($detail->total_duration / 60, 2) }} jam |
|
@if (!empty($metadata->links))
@endif
@endsection
@section('other-scripts')
@endsection