[Tables] [Custom Column] Incorrect documentation for accessing Eloquent Record in Blade View

As per documentation,

Inside the Blade view, you may access the current table row’s Eloquent record using the $record variable:
https://filamentphp.com/docs/4.x/tables/columns/custom-columns#accessing-the-eloquent-record-in-the-blade-view

<div>
    {{ $record->name }}
</div>


Does not work, but $getRecord() does, which is the v3 way of accessing Eloquent records. Is this something that they have missed in v4 documentation?
image.png
Was this page helpful?