@extends('layouts.main') @section('title', 'Company Users') @section('content')

Users for {{ $company->company ?? $company->name }}

Manage users under this company
@if($companyUsers->count() > 0) @foreach($companyUsers as $index => $user) @endforeach
# User Email Status Created Actions
{{ $companyUsers->firstItem() + $index }}
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }}
@if($user->email_verified_at) Verified @else Pending @endif {{ $user->created_at->format('M d, Y') }}
@csrf @method('DELETE')
Showing {{ $companyUsers->firstItem() }} to {{ $companyUsers->lastItem() }} of {{ $companyUsers->total() }} entries
{{ $companyUsers->links() }}
@else
No Users Found

No users have been created under this company yet.

Add First User
@endif
@endsection @section('styles') @endsection @section('scripts') @endsection