@extends('layouts.master')
@section('title') {{$title}} @lang('translation.starter') @endsection
@section('content')
@component('components.breadcrumb')
@slot('li_1') Pages @endslot
@slot('title') {{$title}} @endslot
@endcomponent
Nama Pegawai |
Bulan |
Jumlah masuk |
Jumlah Tepat Waktu |
Jumlah Terlambat |
@foreach ($prods as $item)
{{ $item->nama }} |
{{ $item->bulan }} |
{{ $item->jumlah_masuk }} |
{{ $item->jumlah_tepat_waktu }} |
{{ $item->jumlah_terlambat }} |
@endforeach
Rincian Finger
No |
Tanggal |
Jam Masuk |
Scan Masuk |
Jam Pulang |
Scan Pulang |
Terlambat |
Keterangan |
Action |
@php
$no=1;
@endphp
@foreach ($prods_rincian as $item)
{{ $no++ }} |
{{ date('d F Y',strtotime($item->tanggal)) }} |
{{ $item->jam_masuk }} |
{{ $item->scan_masuk }} |
{{ $item->jam_pulang }} |
{{ $item->scan_pulang }} |
{{ $item->terlambat }} |
{{ $item->keterangan }} |
|
@endforeach
@endsection
@section('modal')
@endsection
@section('script')
@include('datatable')
@endsection