@extends('admin.layouts.master')
@section('title', 'Tenants')
@section('page-title', 'Tenants')
@section('breadcrumbs')
Tenants@endsection
@section('content')
| Name | Slug | Status |
Pages | Collections | Members |
Actions |
@forelse ($tenants as $tenant)
| {{ $tenant->name }} |
{{ $tenant->slug }} |
{{ ucfirst($tenant->status) }}
|
{{ $tenant->pages_count }} |
{{ $tenant->collections_count }} |
{{ $tenant->memberships_count }} |
|
@empty
| No tenants yet. |
@endforelse
{{ $tenants->links() }}
@endsection