belongsTo `Placeholder::` field

Placeholder::make('company_id')
  ->content(fn($record) => CustomerResource::getUrl('edit', $record->company)),


can i make this a clickable link?
Solution
Placeholder::make('company_id')
->content(function ($record) {
    $url = CustomerResource::getUrl('edit', $record->company);

    return new HtmlString("<a href='{$url}'>{$url}</a>");
}),
Was this page helpful?