@extends('layouts.starlight') @section('title') Dashboard @endsection @section('dashboard') active @endsection @section('breadcrumb') @endsection @section('content')
{{ __('Dashboard') }}
@if (session('status')) @endif
Total Users: {{ $users->count() }}
@foreach ($users as $user) @endforeach
SL.No: Name Email_Address Account_Created_At Account_Updated_At
{{ $loop->index +1 }} {{Str::title($user->name) }} {{ $user->email }} {{ $user->created_at->diffForHumans() }} {{ $user->updated_at->diffForHumans() }}
@endsection