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

create() public method

创建
public create ( array $input ) : News
$input array
return News
    public function create(array $input)
    {
        if ($id = parent::create($input)) {
            return $id;
        }
        throw new GeneralException('There was a problem creating this news. Please try again.');
    }
NewsCategoryRepositoryEloquent