How to make a URL column?

Is there anything like Forms\Components*Url*::make?
where you can provide a display text and url, and it will render a link
Solution
The url method accepts a callback so you can just access the record object to get any property from the model, something like this (obviously no idea what your column setup is)
Tables\Columns\TextColumn::make('url_display_text')
    ->url(fn ($record) => $record->url),
Was this page helpful?