@extends('layouts.admin_layout') @section('title', 'View Login Log') @section('content')

View Login Log

@foreach($login_log as $login_log_row) @endforeach
Name Email ID Mobile Number IP Address Time Stamp
{{$login_log_row->user_first_name}} {{$login_log_row->user_last_name}} {{$login_log_row->user_email_id}} {{$login_log_row->user_mobile_number}} {{$login_log_row->ip_address}} {{date('dS F, Y h:i A', strtotime($login_log_row->created_at))}}
@endsection