Question
Hi, I'm getting this error: Attempt to read property [title] on null This my relationship in my model: public function ad_types() { return $this->belongsTo(AdType::class); } This is how I'm trying to output it in my blade view: {{ $ad->ad_types->title }} Here is ...