@extends('layouts.modern') @section('page-title', $business->company_name . ' - Users') @section('breadcrumb')
Managing users for this business
| User | Phone | Roles | Status | Actions | |
|---|---|---|---|---|---|
{{ $user->name }}ID: {{ $user->id }} |
{{ $user->email }} | {{ $user->phone ?: '-' }} | @if($user->roles->count() > 0) @foreach($user->roles as $role) {{ $role->name }} @endforeach @else No roles @endif | @if($user->is_active) Active @else Inactive @endif | |
|
@if(request()->hasAny(['search', 'status']))
No users found matching your search criteria. View All Users @elseNo users found for this business. @if(auth()->user()->hasPermission('businesses.users.create')) Add First User @endif @endif |
|||||