@extends('admin.layout') @section('content')

Tenants

Manage all tenants in the system

Add Tenant
@if(session('success')) @endif
@foreach($tenants as $tenant) @endforeach
ID Name Email Database Name Actions
#{{ $tenant->id }}
{{ $tenant->name }}
{{ $tenant->email }}
{{ $tenant->db }}
@if($tenants->hasPages())
Showing {{ $tenants->firstItem() ?? 0 }} to {{ $tenants->lastItem() ?? 0 }} of {{ $tenants->total() }} entries
@endif
@endsection