#Inertia, Vue and route related issue
1 messages · Page 1 of 1 (latest)
Sorry @upper pond , just solved the issue. It was related to controller.
$lists = $this->invoice->lists();
$entities = $this->entityService->lists(false);
Changed to this:
$lists = $this->invoice->lists(true, request()->all(), true);
$entities = $this->entityService->lists(false);
Here $lists var is playing the vital role
Okay, any reason you're deleting the message?