Skip to content
Advertisement

Trying to get property ‘id’ of non-object on click of the edit button

I’m new to Laravel. I have this page where I’m displaying all the candidates who have applied for a job.

job-applications.blade.php

JavaScript

Whenever I’m clicking on the edit button it is showing the error that

Trying to get property ‘id’ of non-object

Here’s my controller code for jobApplications

JavaScript

It is giving error on the line:

JavaScript

As per the solutions I could find over internet it’s because I’m trying to assign a object type id to an array applications. I tried to change the first() to get() on $jobs variable but then it’s giving the error that

property [id] doesn’t exist on this collection instance.

Advertisement

Answer

There’s a problem here:

JavaScript

You forgot the curly braces {{ }} that should surround the route() helper

Should be:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement