belongsTo('Autos\Car\Models\Manufacturer'); } /** * The automodel that belong to the car. */ public function automodel(){ return $this->belongsTo('Autos\Car\Models\Automodel'); } /** * The body that belong to the car. */ public function body(){ return $this->belongsTo('Autos\Car\Models\Body'); } }