@extends('layouts.app')
@section('title', 'User Management')
@section('content')
| Name |
Email |
Role |
Created At |
Actions |
@foreach($users as $user)
| {{ $user->name }} |
{{ $user->email }} |
{{ $user->roles->pluck('name')->join(', ') }} |
{{ $user->created_at->format('d-M-Y') }} |
Edit
View |
@endforeach
{{ $users->links() }}
@endsection