'integer' ]; protected $fillable = [ 'year', 'make', 'model', 'type', 'doNotJudge', 'owner' ]; protected $dates = [ 'created_at', 'updated_at' ]; public function vehicleType() { return $this->belongsTo(CarShowCategory::class, 'type', 'id'); } public function vehicleOwner() { return $this->belongsTo(Bidders::class, 'owner', 'bidder_assigned_number'); } public function vehicleScores() { return $this->hasMany(VehicleScores::class, 'vehicle'); } public function CarShowWinner() { return $this->belongsTo(CarShowWinner::class, 'vehicle'); } }