@extends('layouts.app') @section('title', 'User List') @section('content')
@foreach($users as $user) @endforeach
First Name Last Name User Name Last Login Login Login History Actions
{{ ucwords($user->name) }} {{ ucwords($user->last_name) }} {{ $user->email }} {{ $user->created_at }} Login as user Login History
@endsection @section('script') @endsection