image()
Return an image from any page specified by the path
image(string $path = null): File|null
Parameters
Name | Type | Default | Description |
---|---|---|---|
$path |
string |
null |
Return type
File|null
Example
Fetching an image of the current page
<?= image('forrest.jpg')->url() ?>
Fetching an image from any other page
<?= image('projects/project-a/forrest.jpg')->url() ?>