관리-도구
편집 파일: Role.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Role extends Model { /** * The table associated with the model. * * @var string */ protected $table = 'roles'; public function permissions(){ return $this->hasMany('App\AccessControl','role_id'); } }