eloquent – attempt to read property xxx on null

eloquent – attempt to read property xxx on null

I want to explain the error to you
so the error says that your trying to access something in something doesnt exists (null) , its like that you have an assoc array and trying to get unexists key

change

<td>{{$pengajuan->statuses->nama_status}}</td>

to

<td>{{$pengajuan->status()->nama_status}}</td>

also

<td>{{$pengajuan->divisis->nama_divisi}}</td>

to

 <td>{{$pengajuan->divisi()->nama_divisi}}</td>

so that will work

eloquent – attempt to read property xxx on null

Leave a Reply

Your email address will not be published.