for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: sergi
* Date: 29/02/16
* Time: 16:36
*/
namespace App;
use Illuminate\Database\Eloquent\Model;
class Task extends Model
{
protected $fillable = ['name', 'priority', 'done'];
public function tags()
return $this->belongsToMany('App\Tag', 'task_tag');
}