Closed xluk9 closed 1 month ago
You can return whatever you like from the handle
method.
Closing due to inactivity. If you feel your issue is still relevant please open a new one with a link to a repository containing a minimal reproducible example.
Hello, nice project. Finally, I don't have to wander around files to get to the business logic. So, in my application I usually respond with HTML, JSON and sometime I also need to return an Excel file or PDF file. What would be the right approach here other than implementing if/else in the controller? Is there a convenient way to provide an array like
where the key (in this case is
expectPDF
) is the method to call on$response
like$response->expectPDF()
. If that call return true, then invokepdfResponse
on the Action class. Obviously the user should implement somewhereexpectPDF
, either as macro (don't know if doable) or in the Action class itself.