Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

kokarat's avatar

Can I display card on detail page ?

I need to show my custom card on the resource detail page.

How to do that please help.

Thank you.

0 likes
4 replies
kokarat's avatar

@BRAUNSON - Yes, I known that but I need to show card on detail page not index of resource.

eugenefvdm's avatar

Try this:

public function cards(Request $request)
    {
        return [
            (new YourCard)->onlyOnDetail(),
        ];
    }
1 like

Please or to participate in this conversation.