# `MishkaGervaz.Table.Types.Action.Link`
[🔗](https://github.com/mishka-group/mishka_gervaz/blob/v0.0.1-alpha.4/lib/mishka_gervaz/table/types/action/link.ex#L1)

Link action type - renders a navigation link.

Used for actions like :show_link, :edit_link that navigate to another page.

## Route Building

Routes are built from `state.static.config[:identity][:route]`:
- `:show` / `:show_link` → `{route}/{id}`
- `:edit` / `:edit_link` → `{route}/{id}/edit`

Or use a custom path function:

    action :view, type: :link, path: fn record -> "/custom/#{record.id}" end

See `MishkaGervaz.Table.Types.Action` (registry),
`MishkaGervaz.Table.Behaviours.ActionType`,
`MishkaGervaz.Table.Entities.RowAction`, and
`MishkaGervaz.Table.Entities.BulkAction`.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
