How to Solve "Trying to get property of non-object" in Laravel?

3.1k Views Asked by At

If my code return null then it generates this error. If the code returns some data, then it works fine.

Controller

$profile_data= DB::table('partner_prefence')
    ->select('*')
    ->where('profile_id',$profile_id)
    ->first();

return view('partner_prefence',['profile_data' =>  $profile_data]);

View/Blade

@php($rel_status = explode(',', $profile_data->p_marital_status))

If $profile->p_marital_status has a value then there's no issue. The error only comes when its value is null.

4

There are 4 best solutions below

0
On

Depending on whether the entry is vital for the page to be rendered or not, you could either perform a check in the controller.

$profile_data = DB::table('partner_prefence')
->select('*')
->where('profile_id',$profile_id)
->firstOrFail()

Or allow the null value to pass on to the view and make a ternary check.

$profile_data ? $profile_data->p_marital_status : '';

References:

Ternary Operator

Retrieving Single Models

0
On

Simply use an isset() or != null on the sentence like this:

@php($rel_status = $profile_data ? explode(',', $profile_data->p_marital_status?: '')) : [];
1
On

First $profile_data need to be checked whether it is empty or it has some data. step2: Checking $profile_data object has property called p_material_status. Step3: If the above both are true then try to explode the data otherwise return some error message and try not explode the data would be better.

<?php

$data = (($profile_data != null) && property_exists($profile_data->p_marital_status)) ? $profile_data->p_marital_status : null)
if($data){
$rel_status = explode(',', $data);
}else{
    // Something else
}

?>
0
On

Use optional() https://laravel.com/docs/5.8/helpers#method-optional

If the given object is null, properties and methods will return null instead of causing an error.

{!! old('name', optional($user)->name) !!}