@extends('layouts.master') @section('css') @endsection @section('content')
@php use Carbon\Carbon; $today = Carbon::now()->isoFormat('YYYY-MM-DD'); @endphp
@csrf @foreach ($employees as $employee) @php $attd = \App\Models\Attendance::query() ->where('emp_id', $employee->id) ->where('attendance_date', $today) ->first(); @endphp @endforeach
Employee Name Employee Position Employee ID ABSENT IN TIME OUT TIME
{{ $employee->name }} {{ $employee->position }} {{ $employee->id }}
@endsection