@extends('layouts.user_type.auth') @section('content') @push('styles') @endpush
All Users
+  New User
{{-- Customers Tab --}}
@foreach ($customers as $user) @endforeach
ID Name Email Role Creation Date Verified Action
{{ $loop->iteration }} {{ $user->name }} {{ $user->email }} {{ $user->role ?? 'N/A' }} {{ $user->created_at->format('d/m/y') }} @if ($user->email_verified_at) Verified @else Not Verified @endif
{{ $customers->links('pagination::bootstrap-4') }}
{{-- Admins Tab --}}
@foreach ($admins as $user) @endforeach
ID Name Email Role Creation Date Verified Action
{{ $loop->iteration }} {{ $user->name }} {{ $user->email }} {{ $user->role ?? 'N/A' }} {{ $user->created_at->format('d/m/y') }} @if ($user->email_verified_at) Verified @else Not Verified @endif
@endsection @section('script') @push('scripts') @endpush @endsection