@extends('layouts.admin') @section('title', 'All Users') @section('content')

All Users

@foreach ($users as $user) @endforeach
# User Type Email Total Comments Action
{{ $user->id }} {{ $user->name }} {{--
--}}
{{ ucfirst($user->utype) }}
{{ $user->created_at->locale('fr')->translatedFormat('d F Y à H:i') }}
{{ $user->email }} 0
{{ $users->links('pagination::bootstrap-5') }}
@endsection