App\Repositories\Eloquent\NewsCategoryRepositoryEloquent::update PHP Method

update() public method

更新
public update ( array $input, $id ) : boolean
$input array
$id
return boolean
    public function update(array $input, $id)
    {
        if (parent::update($input, $id)) {
            return true;
        }
        throw new GeneralException('There was a problem updating this user. Please try again.');
    }
NewsCategoryRepositoryEloquent