@extends('layouts.app') @section('title', 'Gallery Absensi') @section('content')

Gallery Foto

Kumpulan foto absensi masuk dan lembur.

@csrf
Dashboard
@forelse($photos as $photo) @if($photo->foto_masuk)
Foto Masuk
MASUK

{{ $photo->employee->nama }}

{{ $photo->tanggal }}

@csrf @method('DELETE')
@endif @if($photo->foto_pulang)
Foto Pulang @if(str_contains($photo->foto_pulang, '-L-'))
LEMBUR
@else
PULANG
@endif

{{ $photo->employee->nama }}

{{ $photo->tanggal }}

@csrf @method('DELETE')
@endif @empty

Belum ada foto absensi.

@endforelse
@endsection