@if(! $isReadyToLoad)
{{ __('Loading...') }}
@else
{{-- Compact Header --}}
{{ __($title) }}
{{ __('Recent activity and communications') }}
@if($this->isClientModel && false) @endif
{{-- Compact Tab Pills --}}
@if($this->isClientModel) @endif @if($this->hasRelatedActivities && $this->stats['related'] > 0) @endif
{{-- Timeline Items --}}
@forelse($this->filteredItems as $item) @switch($item['type']) @case('activity') @include('livewire.activity.partials.activity-item', ['activity' => $item['data']]) @break @case('email') @include('livewire.activity.partials.notification-item', ['email' => $item['data']]) @break @case('notification') @include('livewire.activity.partials.notification-item', ['notification' => $item['data']]) @break @case('sms') @include('livewire.activity.partials.notification-item', ['notification' => $item['data']]) @break @case('event') @include('livewire.activity.partials.event-item', ['event' => $item['data']]) @break @case('note') @include('livewire.activity.partials.note-item', ['note' => $item['data']]) @break @endswitch @empty
{{ __('No activity found') }}
{{ __('Activity will appear here when actions are performed.') }}
@endforelse
{{-- Load More --}} @if($this->filteredItems->count() >= $perPage)
@endif
@endif