@extends('layouts.app') @section('titlepage', 'Jam Kerja') @section('content') @section('navigasi') Jam Kerja @endsection
@can('jamkerja.create') Tambah Jam Kerja @endcan
@foreach ($jamkerja as $d) @endforeach
No. Kode Nama Jam Kerja Jam Masuk Jam Pulang Istirahat Mulai Istirahat Akhir Istirahat Lintas Hari Total Jam #
{{ $loop->iteration }} {{ $d->kode_jam_kerja }} {{ $d->nama_jam_kerja }} {{ $d->jam_masuk }} {{ $d->jam_pulang }} @if ($d->istirahat == 1) @else @endif {{ $d->jam_awal_istirahat != null ? date('H:i', strtotime($d->jam_awal_istirahat)) : '-' }} {{ $d->jam_akhir_istirahat != null ? date('H:i', strtotime($d->jam_akhir_istirahat)) : '-' }} @if ($d->lintashari == 1) @else @endif {{ $d->total_jam }}
@can('jamkerja.edit') @endcan @can('jamkerja.delete')
@csrf @method('DELETE')
@endcan
{{-- {{ $jamkerja->links() }} --}}
@endsection @push('myscript') @endpush