App\Repositories\Eloquent\NewsCategoryRepositoryEloquent::create PHP Méthode

create() public méthode

创建
public create ( array $input ) : News
$input array
Résultat 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