@extends('layouts.app') @section('content')

👥 Users Management

Add New User
@if (session('success')) @endif @if (session('error')) @endif
Total Users: {{ $total }}
@if ($users->count())
@foreach ($users as $user) @endforeach
ID Name Email Created Actions
{{ $user->id }} {{ $user->name }} {{ $user->email }} {{ $user->created_at->format('Y-m-d H:i') }} View Edit
@csrf @method('DELETE')
{{ $users->links() }}
@else
No users found. Create one
@endif
@endsection