for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Permission extends Model
{
protected $fillable = ['name'];
public $timestamps = false;
public function roles()
return $this->belongsToMany('App\Role');
}