belongsToMany(Role::class, 'permission_role','permission_id', 'role_id'); } /** * Get the permission object by name. * @param $name * @return mixed */ public static function getByName($name) { return static::where('name', '=', $name)->first(); } }