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

create() 공개 메소드

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