@extends('layout.main') @section('content') @if(session()->has('message'))
{{trans('file.date')}} | {{trans('file.Employee')}} | {{trans('file.CheckIn')}} | {{trans('file.CheckOut')}} | {{trans('file.Status')}} | {{trans('file.Created By')}} | {{trans('file.action')}} | ||
---|---|---|---|---|---|---|---|---|
{{$key}} | {{ date($general_setting->date_format, strtotime($attendance->date)) }} | {{ $employee->name }} | {{ $attendance->checkin }} | {{ $attendance->checkout }} | @if($attendance->status){{trans('file.Present')}} |
@else()
{{trans('file.Late')}} |
@endif
{{$user->name}} |
{{ Form::open(['route' => ['attendance.destroy', $attendance->id], 'method' => 'DELETE'] ) }}
{{ Form::close() }}
|