@extends('backend.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'])) }} | {{ $attendance['employee_name'] }} | {!! $attendance['checkin_checkout'] !!} | @if($attendance['status']){{trans('file.Present')}} |
@else()
{{trans('file.Late')}} |
@endif
{{ $attendance['user_name'] }} |
{{ Form::open(['route' => ['attendances.delete', [$attendance['date'], $attendance['employee_id']]], 'method' => 'post'] ) }}
{{ Form::close() }}
|