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.
Depending on whether the entry is vital for the page to be rendered or not, you could either perform a check in the controller.
Or allow the null value to pass on to the view and make a ternary check.
References:
Ternary Operator
Retrieving Single Models