generated from Flycro/laravel-nuxt
27 lines
464 B
PHP
27 lines
464 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Vote extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'book_recommendation_id',
|
|
];
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function bookRecommendation()
|
|
{
|
|
return $this->belongsTo(BookRecommendation::class);
|
|
}
|
|
}
|