@extends('nexfloit.layouts.app') @section('title', 'Tenants') @section('content')
@forelse($tenants as $tenant) @empty @endforelse
Code Business Owner Plan Monthly Fee Created Actions
{{ $tenant->code }} {{ $tenant->business_name }}
{{ $tenant->email }}
{{ $tenant->owner_name }} @if($tenant->is_locked) @elseif(!$tenant->is_active) @elseif($tenant->isOnTrial()) @endif {{ $tenant->plan_badge['label'] }} Rs. {{ number_format($tenant->monthly_fee, 2) }} {{ $tenant->created_at->format('M d, Y') }}
@if($tenant->is_locked)
@csrf
@else @endif

No tenants found

@if($tenants->hasPages()) @endif
@endsection