@lang('saas.societyDetails')

{{ $society->name }}

{{ $society->name }} @if ($society->license_type != 'paid') FREE @else PAID @endif

@if(module_enabled('Subdomain')) @endif
{!! nl2br($society->address) !!}
{{ __('app.impersonate') }}

@lang('modules.society.currentPackage')

@lang('modules.package.packageName'): {{ $society->package?->package_name ?? __('messages.noPackageFound') }}

@lang('modules.package.packageType'): {{ ucfirst($society->package?->package_type->value) }} ({{ ucfirst($society?->package_type) }})

@if ($society->package?->package_type->value == 'trial')

@lang('modules.package.trialExpireOn'): {{ $society?->trial_ends_at ? \Carbon\Carbon::parse($society->trial_ends_at)->format('d M, Y') : '--' }}

@elseif ($society->package?->package_type->value != 'lifetime')

@lang('modules.package.licenceExpiresOn'): {{ optional($society->license_expire_on)->format('d M, Y') ?? '--' }}

@endif
@lang('app.id')
  • {{ $society->id }}
@lang('app.status')
  • @if ($society->is_active == true) @lang('app.active') @else @lang('app.inactive') @endif
@lang('modules.user.phone')
  • {{ $society->phone_number }}
@lang('modules.user.email')
  • {{ $society->email }}
@lang('modules.settings.societyTimezone')
  • {{ $society->timezone }}
@lang('modules.settings.societyCountry')
  • {{ $society->country->countries_name }}
@lang('modules.settings.societyCurrency')
  • {{ $society?->currency?->currency_name }} ({{ $society?->currency?->currency_code }})
@lang('app.dateTime')
  • {{ $society->created_at->timezone(global_setting()->timezone ?? 'Asia/Kolkata')->translatedFormat('D, d M Y, h:i A') }}
@if ($societyAdmin)
@lang('saas.firstAdmin')
Bonnie image
{{ $societyAdmin->name }}
{{ $societyAdmin->email }}
@lang('saas.changePassword')
@else
No Admin Found
@endif

@lang('saas.payments')

@lang('saas.changePassword')
@csrf
@lang('app.save')
@lang('app.cancel')