@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Authorized Organization')) @section('header-title')
| # | {{ __('ID') }} | {{ __('Author Name') }} | {{ __('Company Name') }} | {{ __('Email') }} | {{ __('Domain Address') }} | {{ __('Account Verified') }} | @if (Auth::user()->hasRole('admin') || Auth::user()->is_admin){{ __('Action') }} | @endif|
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ generateID($user->id) }} |
{{ $user->user->name }} |
{{ $user->name }} | {{ $user->user->email }} | {{ $user->domain ?? 'N/A' }} |
@if ($user->user->email_verified_at == null)
{{ __('Pending') }}
{{ __('Verified') }}
|
@if (Auth::user()->hasRole('admin') ||
Auth::user()->hasRole('organization') ||
Auth::user()->is_admin ||
Auth::user()->is_org)
@endif | |
{{ __('No User Available') }} |
||||||||