@extends('layouts.app') @section('title','Super Admin') @section('content') @php $tenants=\App\Models\Tenant::withCount(['users','invoices','customers'])->latest()->paginate(30); @endphp
| Företag | E-post | Plan | Kunder | Fakturor | Status | |
|---|---|---|---|---|---|---|
{{ $t->name }} {{ $t->created_at->format('d.m.Y') }} | {{ $t->email }} | {{ ucfirst($t->getCurrentPlan()) }} | {{ $t->customers_count }} | {{ $t->invoices_count }} | {{ $t->is_active?'Aktiv':'Inaktiv' }} |