@extends('layouts.admin') @section('title', 'Tenant Details - ' . $tenant->name) @section('content')
Tenant details and management
{{ session('success') }}
{{ $tenant->name }}
{{ $tenant->domain }}
{{ $tenant->phone ?: 'Not provided' }}
{{ $tenant->created_at->format('M d, Y \a\t g:i A') }}
{{ $tenant->notes }}
{{ $tenant->tenancy_db_name ?? 'tenant_' . $tenant->domain }}
{{ $tenant->subscription->plan->name }}
${{ number_format($tenant->subscription->plan->price, 2) }}/{{ $tenant->subscription->plan->billing_cycle }}
{{ $tenant->subscription->trial_ends_at->format('M d, Y') }}
{{ $tenant->subscription->ends_at->format('M d, Y') }}
No active subscription
Assign PlanTenant created
{{ $tenant->created_at->diffForHumans() }}
Subscription activated
{{ $tenant->subscription->created_at->diffForHumans() }}
Last updated
{{ $tenant->updated_at->diffForHumans() }}