@extends('layouts.layout_index') @section('title', 'EndoCapture') @section('lpage') Log Data @endsection @section('rpage') Administrator @endsection @section('rppage') Log Data @endsection @section('style') @endsection @section('content') @php $log = DB::table('tb_logindata')->join('users','tb_logindata.logindata_user_id','users.id')->paginate(15) @endphp

Log Login

@foreach ($log as $l) @endforeach
# User Login Time Logout Time
{{@$l->logindata_id}} {{@$l->user_name}}{{@$l->user_prefix}} {{@$l->user_firstname}} {{@$l->user_lastname}} {{@$l->logindata_login_time}} {{@$l->logindata_logout_time}}
@endsection