|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Favorite extends Model
|
|
|
|
{
|
|
|
|
protected $fillable = [
|
|
|
|
'user_id',
|
|
|
|
'cafe_id'
|
|
|
|
];
|
|
|
|
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function cafe()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Cafe::class);
|
|
|
|
}
|
|
|
|
}
|