@extends('backend.layouts.master') @section('pageTitle') Employee Attendance @endsection @section('pageContent') Employee Attendance Add New Dashboard Attendance Employee Add @csrf @if(count($errors->all())) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif Date* {{ $errors->first('attendance_date') }} # Name Card No. In Time Out Time Working Hours @foreach($employees as $employee) {{$loop->iteration}} {{$employee->name}} {{$employee->id_card}} 00:00 @endforeach @endsection @section('extraScript') @endsection