getTableRecordUrlUsing - in RelationManager wrong argument.

I was using 3.0.39

After updating to 3.0.69 callback injects $record as Table instead of model


My code (in a RelationManager)
protected function getTableRecordUrlUsing(): ?Closure
{
    return function (Model $record): string {
        return  ShopCategoryResource::getUrl('edit', ['record' => $record]);
    };
}


I don't know if it's intended or not but it does no longer reflect the doc at https://filamentphp.com/docs/2.x/tables/getting-started#record-urls
Solution
Well, just noticed that I looked at 2.0 doc
Was this page helpful?