hasMany('App\Models\Contracts\Bid', 'contract_id', 'id'); } //One-to-One relationship for the accepted bid. public function AcceptedBid() { return $this->hasOne('App\Models\Contracts\AcceptedBid', 'contract_id', 'id'); } }