@extends('layouts.app') @section('htmlheader_title') Users @endsection @section('content')

Current Users:

@can('admin',(new \App\Models\User)) @endcan @foreach (\App\Models\User::orderBy('email')->cursor() as $oo) @endforeach
ID Email Name Active Verified Last On
Add New User
{{ $oo->id }} {{ $oo->email }} {{ $oo->name }} {{ $oo->active ? 'YES' : 'NO' }} {{ $oo->email_verified_at ? $oo->email_verified_at->format('Y-m-d') : '-' }} {{ $oo->last_on ? $oo->last_on->toDateTimeString() : 'Unknown' }}
@endsection @section('page-scripts') @append