@extends('backend.layouts.master') @section('pageTitle') Employee Attendance @endsection @section('pageContent')

Employee Attendance Add New

@csrf @if(count($errors->all()))
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ $errors->first('attendance_date') }}
@foreach($employees as $employee) @endforeach
# Name Card No. In Time Out Time Working Hours
{{$loop->iteration}} {{$employee->name}} {{$employee->id_card}}
00:00
@endsection @section('extraScript') @endsection