jonnybarnes.uk/app/Bookmark.php

24 lines
389 B
PHP
Raw Normal View History

2017-10-10 15:58:07 +01:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Bookmark extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['url', 'name', 'content'];
/**
* The tags that belong to the bookmark.
*/
public function tags()
{
return $this->belongsToMany('App\Tag');
}
}