2019-07-23 10:42:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
use App\User;
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
|
|
class UserMaterial extends Model
|
|
|
|
|
{
|
|
|
|
|
protected $table = 'likes';
|
2019-08-06 09:41:44 +00:00
|
|
|
protected $fillable = ['user_id','material_id','watched','liked'];
|
2019-07-23 10:42:23 +00:00
|
|
|
public function user(){
|
|
|
|
|
return $this->belongsTo(User::class);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function material(){
|
|
|
|
|
return $this->belongsTo(Material::class);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|