#Inertia, Vue and route related issue

1 messages · Page 1 of 1 (latest)

upper pond
#

So, how are you passing that params? It's null by default, so if you don't pass it to that method it's gonna be null.

golden talon
#

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

upper pond
golden talon
#

Thought missed to write crucial point and felt post character limit might be a issue to write and in the mean time solved it.

#

Is there any way to write down the message again?
So anyone can get help from it.