Can you show your action code, please?
Action in Nova receives models so it will probably only iterate over the ones that are passed to it unless you overwrite that.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I have a 'print badges' action, which I am using to acquire all of the selected user resource ids which I then attach to the query string of a redirect to a domPDF script - everything is working great, except I have just noticed that only the last portion of user models are visible within my action - that lead me to https://github.com/laravel/nova-issues/issues/1112, which seems to suggest that instead of using handle() in my action, I can use handleRequest() instead, and access all of the model collections somehow - could someone please help me understand how I do that? If I foreach over $request, are the collections in there somewhere? Thanks!
Please or to participate in this conversation.