belongsTo('App\Models\CarShowCategory', 'type', 'id'); } public function vehicleOwner() { return $this->belongsTo('App\Models\Bidders', 'owner', 'bidder_assigned_number'); } public function vehicleScores() { return $this->hasMany('App\Models\VechicleScores', 'id', 'vehicle'); } public function CarShowWinner() { return $this->belongsTo('App\Models\CarShowWinner', 'id', 'vehicle'); } }