@extends('layouts.default') @section('title','Employees Login History') @section('new_button') @endsection @section('content') @foreach ($list as $li) @endforeach @if(count($list) == 0) @endif
Employee Ip Address Time-in Time-out Hours Actions
{{ $li->user?->name }} {{ $li->checkin_ip }} {{ date('H:i A', strtotime($li->checkin_time)) }} {{ ($li->checkout_time!='')?(date('H:i A', strtotime($li->checkout_time))):'' }}
No Data
@endsection