@extends('layouts.admin') @section('page-title') {{__('Manage Attendance List')}} @endsection @push('script-page') @endpush @section('breadcrumb')
{{__('Employee')}} | @endif{{__('Date')}} | {{__('Status')}} | {{__('Clock In')}} | {{__('Clock Out')}} | {{__('Late')}} | {{__('Early Leaving')}} | {{__('Overtime')}} | @if(Gate::check('edit attendance') || Gate::check('delete attendance')){{__('Action')}} | @endif
---|---|---|---|---|---|---|---|---|
{{!empty($attendance->employee)?$attendance->employee->name:'' }} | @endif{{ \Auth::user()->dateFormat($attendance->date) }} | {{ $attendance->status }} | {{ ($attendance->clock_in !='00:00:00') ?\Auth::user()->timeFormat( $attendance->clock_in):'00:00' }} | {{ ($attendance->clock_out !='00:00:00') ?\Auth::user()->timeFormat( $attendance->clock_out):'00:00' }} | {{ $attendance->late }} | {{ $attendance->early_leaving }} | {{ $attendance->overtime }} | @if(Gate::check('edit attendance') || Gate::check('delete attendance'))@can('edit attendance') @endcan @can('delete attendance') @endif | @endif