i want to change value from my dropdown but i’m begginer and i’m little lost. This is my Controller method: This is my dropdown in vuejs file: and this is my method in vue js: the route is fine, the problem are probably my methods. Answer I think you should pass right values to your onChanges method. When you use
Tag: inertiajs
Laravel orWherehas filtering relationship with multiple columns
I’m facing a problem with search filtering, Project is with Laravel, Inertia js, Vue js I want to show all invoices with Recipient Information on it which has a foreign key on it to make this possible, also I have relationships on my model Data on Front-end end are showing successfully but when I try to filter it show’s me
update return array [“isTrusted” => true] Laravel with Vue3 and Inertiajs
I tried to make Update i made a debug in Laravel 8 like that: Edit and Update function in Controller Vue Template it return the data in the form but the problem with the image file its return that in debug after changing image file and submit: array [“isTrusted” => true] I added in the form like that: nothing changed
PHPUnit assertDatabaseHas with Laravel and Inertia
I have a Laravel 8 setup that utilises Intertia.js. I’m trying to test my post routes to store new resources and want to assert that the database has the new record stored, using the assertDatabaseHas() method. Controller.php CreateSlotTest.php When I debug the session I can see the slot that I added to the with() method but I can’t figure out