City Tier
@if (!Auth::user()->hero || !Auth::user()->city)

Get Started

@if (!Auth::user()->hero)

You haven't created a hero yet.

Create Hero @endif @if (!Auth::user()->city)

Your empire has no name yet.

Name Your City @endif
@else {{-- Dungeon Button (outside the centered content) --}}
{{-- Centered Page Content --}}
@include('dashboard._hero-panel')
@include('hero._hero-full-stats')
@include('dashboard._inventory-panel') @if (session('selected_item')) @include('hero.item-details', ['item' => session('selected_item')]) @else
@include('dashboard._empire-panel')
@endif
@livewire('chat-panel') @livewire('system-log-panel')
@endif