Typed static property error when trying to activate cluster functionality

I'm trying to use the cluster functionality but I'm running into an error I can't get past. The cluster shows up in the main navigation but when I try to open Users I get the following error:

Typed static property Filament\Pages\BasePage::$view must not be accessed before initialization


I have removed everything and started over with an empty resource (see image) with the same result. Anyone experiences this one before?

Clusters\Users.php
<?php

namespace App\Filament\Clusters;

use Filament\Clusters\Cluster;

class Users extends Cluster
{
    protected static ?string $navigationIcon = 'fad-users';

    protected static ?int $navigationSort = 0;
}


Clusters\Users\Resources\User.php
protected static ?string $cluster = Users::class;
Screenshot_2024-03-26_at_11.06.26.png
Was this page helpful?