2020-04-29 17:15:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Vote extends Model
|
|
|
|
{
|
2020-05-29 23:20:39 +00:00
|
|
|
public $fillable = [
|
|
|
|
|
|
|
|
'userID',
|
|
|
|
'allowedVoteType',
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
public $touches = [
|
|
|
|
'application'
|
|
|
|
];
|
|
|
|
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\User', 'id', 'userID');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function application()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany('App\Application', 'votes_has_application');
|
|
|
|
}
|
2020-04-29 17:15:54 +00:00
|
|
|
}
|