belongsTo('App\Models\Invoice'); } public function user() { return $this->belongsTo('App\Models\User')->withTrashed(); } public function product() { return $this->belongsTo('App\Models\Product'); } public function account() { return $this->belongsTo('App\Models\Account'); } }