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

create() public method

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