@extends('layouts.admin') @section('title', 'Users List') @section('content')
| User | Contact Info | Roles | Mitra Kerja | Joined Date | Actions |
|---|---|---|---|---|---|
|
{{ $user->name }}
|
{{ $user->email }}
@if($user->mobile)
{{ $user->mobile }}
@endif
|
@foreach($user->roles as $role) {{ $role->name }} @endforeach |
{{ $user->partner->short_name ?? 'N/A' }}
|
{{ $user->created_at->format('M d, Y') }} | @role('developer') @endrole |
|
No users found matching your criteria. |
|||||