App\Repositories\Eloquent\NewsCategoryRepositoryEloquent::create PHP 메소드

create() 공개 메소드

创建
public create ( array $input ) : News
$input array
리턴 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