{{ __('Manage Employees for') }}: {{ $business->name }}

Back to Businesses

{{ __('Employees') }}

Available Seats
{{ $availableSeats }}
Total: {{ $totalSeats }}
Upload Employees
@if(!$employees->isEmpty())
Need to send welcome emails?

You can send welcome emails to individual employees using the "Send Welcome Email" button in the Actions column.

@endif @if($employees->isEmpty())
No employees found for this business.
@else
@foreach($employees as $employee) @endforeach
Name Email Status Actions
{{ $employee->first_name }} {{ $employee->last_name }} {{ $employee->email }}
{{ $employee->status }}
Edit Send Welcome Email
@endif