@extends('layouts.app') @section('title', _lang('All Users')) @section('content')
@include('partials.alerts')| {{ _lang('Name') }} | {{ _lang('Email') }} | {{ _lang('Organization') }} | {{ _lang('Type') }} | {{ _lang('Status') }} | {{ _lang('Actions') }} |
|---|---|---|---|---|---|
| {{ $user->name }} | {{ $user->email }} | {{ $user->organization?->name ?? '—' }} | @if ($user->user_type === 'user') {{ _lang('Owner') }} @else {{ _lang('Staff') }} @endif | @if ($user->status) {{ _lang('Active') }} @else {{ _lang('Disabled') }} @endif | |
| {{ _lang('No users found.') }} | |||||