Skip to content
Discussion options

You must be logged in to vote

Hi, judging by the screenshot above, your layout looks like this:

    public function layout(): array
    {
        return [
            Layout::legend(...),
            Layout::rows(...)
     ]
}

You can also insert an image into the legend using the control Sight :: make (..)->render(...). Or from above using your own Blade template:

    public function layout(): array
    {
        return [
            Layout::view('yourBlade'),
            Layout::legend(...),
            Layout::rows(...)
     ]
}

for reference you can look at this section of the documentation https://orchid.software/en/docs/custom-template/#views

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@alejandroGonGon
Comment options

Answer selected by alejandroGonGon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants