@extends('layouts.app') @section('titlepage', 'Lembur') @section('content') @section('navigasi') Lembur @endsection
| Tanggal | Nik | Nama Karyawan | Cabang | Waktu Lembur | Lembur IN | Lembur OUT | Jml Jam | Status | # |
|---|---|---|---|---|---|---|---|---|---|
| {{ DateToIndo($d->tanggal) }} | {{ $d->nik }} | {{ $d->nama_karyawan }} | {{ $d->nama_cabang }} | {{ date('d-m-Y H:i', strtotime($d->lembur_mulai)) }} - {{ date('d-m-Y H:i', strtotime($d->lembur_selesai)) }} | {!! $d->lembur_in ? date('d-m-Y H:i', strtotime($d->lembur_in)) : '' !!} | {!! $d->lembur_out ? date('d-m-Y H:i', strtotime($d->lembur_out)) : '' !!} | {!! $d->lembur_in && $d->lembur_out ? ROUND(hitungJam($d->lembur_in, $d->lembur_out), 2) : '' !!} | @if ($d->status == '1') @elseif ($d->status == '2') @else @endif |