@extends('layouts.nova') @php $headerBreadcrumbs = collect([ (object) ['name' => $page_title ?? 'Community Activity', 'url' => route('community.activity')], ]); $initialFilterLabel = match (($initialFilter ?? 'all')) { 'comments' => 'Comments', 'replies' => 'Replies', 'following' => 'Following', 'my' => 'My Activity', default => 'All Activity', }; @endphp @section('content')
{{ $initialFilterLabel }} @if (!empty($initialUserId)) User #{{ $initialUserId }} @else @endif
@vite(['resources/js/Pages/Community/CommunityActivityPage.jsx']) @endsection