@extends('layouts.superadmin.admin') @section('title') {{$tenant->company_name}} @endsection @section('content')

{{Str::ucfirst($tenant->company_name)}}

All Users
@if(count($tenant_users) > 0 ) @foreach($tenant_users as $user) @if($user->status == 'active') @else @endif @endforeach
s/n User Names Email Address Phone Number Status Action
{{$user_no++}} {{$user->email}} {{$user->phone_number}}
Subscribed
Not Subscribed
@else

No user found

@endif
@endsection