@extends('layouts.admin') @section('content')

Administration

Dashboard

Signed in as {{ auth()->user()->name }}

@foreach([['New contacts',$newContacts],['Published products',$publishedProducts],['Published strains',$publishedStrains],['Active specials',$activeSpecials]] as [$label,$value])

{{ $label }}

{{ $value }}

@endforeach

Launch readiness

Live operational checks based on the current application configuration and database state.

{{ $readinessPassed }} / {{ $readinessTotal }} passed
@foreach($readiness as $check)
{{ $check['ok']?'✓':'!' }}
{{ $check['label'] }}

{{ $check['detail'] }}

@endforeach

Passing these application checks does not replace legal, regulatory, owner, or hosting approval.

Business presence

@forelse($presenceConnections as $connection)
{{ str($connection->provider)->headline() }}{{ str($connection->status)->headline() }}
@empty

No listing providers are connected yet.

@endforelse
@endsection