generated from Flycro/laravel-nuxt
35 lines
676 B
PHP
35 lines
676 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Events\Vote\VoteCreated;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Vote extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'book_recommendation_id',
|
|
];
|
|
|
|
protected static function booted() :void
|
|
{
|
|
static::created(static function ($vote) {
|
|
broadcast(new VoteCreated($vote))->toOthers();
|
|
});
|
|
}
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function bookRecommendation()
|
|
{
|
|
return $this->belongsTo(BookRecommendation::class);
|
|
}
|
|
}
|