From 607c9139a6ac2a6e2b97e221fc9b2aac53cdc3da Mon Sep 17 00:00:00 2001 From: Dan Harrin Date: Fri, 17 Jul 2026 12:25:20 +0100 Subject: [PATCH] docs --- packages/infolists/docs/04-image-entry.md | 2 +- packages/tables/docs/02-columns/04-image.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/infolists/docs/04-image-entry.md b/packages/infolists/docs/04-image-entry.md index 635487aa24..08a73e4b69 100644 --- a/packages/infolists/docs/04-image-entry.md +++ b/packages/infolists/docs/04-image-entry.md @@ -32,7 +32,7 @@ ImageEntry::make('header_image') ->alt('Article header image') ``` -As well as allowing a static value, the `alt()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters, including the `$state` of the current image, which is useful when the entry renders multiple images. +As well as allowing a static value, the `alt()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters, including the `$state` of the current image, which is useful when the entry renders multiple images. If you do not set any alt text, the image is rendered with an empty `alt` attribute, which marks it as decorative for assistive technology. diff --git a/packages/tables/docs/02-columns/04-image.md b/packages/tables/docs/02-columns/04-image.md index 2914465083..5e659a75b3 100644 --- a/packages/tables/docs/02-columns/04-image.md +++ b/packages/tables/docs/02-columns/04-image.md @@ -32,7 +32,7 @@ ImageColumn::make('avatar') ->alt('User avatar') ``` -As well as allowing a static value, the `alt()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters, including the `$state` of the current image. +As well as allowing a static value, the `alt()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters, including the `$state` of the current image. If you do not set any alt text, the image is rendered with an empty `alt` attribute, which marks it as decorative for assistive technology.