Skip to content

Laravel Nova Self-referential Relationship

In Laravel, if I want to create a self-referential relationship I can do the following: How can I make a Laravel Nova resource display this connection? Answer You can achieve what you want like this: This will allow to choose a parent post when you create or update a post. When you are in the detail page of a…

how to filter data based on fromdate and todate?

This is my construct query, i need to filter data based on fromdate and todate,and also based on adminid, whats wrong am i doing here,is there any other way? Answer You’re not concatenating. You forgot the ‘.’. There is also no need to append the ‘NULL’. If you don’t want t…