16 lines
276 B
PHP
16 lines
276 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Vote extends Model
|
|
{
|
|
protected $fillable = ['estimation_round_id', 'name', 'score'];
|
|
|
|
public function estimationRound()
|
|
{
|
|
return $this->belongsTo(EstimationRound::class);
|
|
}
|
|
}
|