FactoryBuilder (Database\Eloquent)

FactoryBuilder

class FactoryBuilder (View source)

Traits

Macroable

Methods

static void macro(string $name, callable $macro)

Register a custom macro.

from Macroable
static bool hasMacro(string $name)

Checks if macro is registered.

from Macroable
static mixed __callStatic(string $method, array $parameters)

Dynamically handle calls to the class.

from Macroable
mixed __call(string $method, array $parameters)

Dynamically handle calls to the class.

from Macroable
void __construct(string $class, string $name, array $definitions, array $states, Generator $faker)

Create an new builder instance.

$this times(int $amount)

Set the amount of models you wish to create / make.

$this states(array|mixed $states)

Set the states to be applied to the model.

Closure lazy(array $attributes = array())

Create a model and persist it in the database if requested.

mixed create(array $attributes = array())

Create a collection of models and persist them to the database.

mixed make(array $attributes = array())

Create a collection of models.

mixed raw(array $attributes = array())

Create an array of raw attribute arrays.

Details

static void macro(string $name, callable $macro)

Register a custom macro.

Parameters

string $name
callable $macro

Return Value

void

static bool hasMacro(string $name)

Checks if macro is registered.

Parameters

string $name

Return Value

bool

static mixed __callStatic(string $method, array $parameters)

Dynamically handle calls to the class.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

mixed __call(string $method, array $parameters)

Dynamically handle calls to the class.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

void __construct(string $class, string $name, array $definitions, array $states, Generator $faker)

Create an new builder instance.

Parameters

string $class
string $name
array $definitions
array $states
Generator $faker

Return Value

void

$this times(int $amount)

Set the amount of models you wish to create / make.

Parameters

int $amount

Return Value

$this

$this states(array|mixed $states)

Set the states to be applied to the model.

Parameters

array|mixed $states

Return Value

$this

Closure lazy(array $attributes = array())

Create a model and persist it in the database if requested.

Parameters

array $attributes

Return Value

Closure

mixed create(array $attributes = array())

Create a collection of models and persist them to the database.

Parameters

array $attributes

Return Value

mixed

mixed make(array $attributes = array())

Create a collection of models.

Parameters

array $attributes

Return Value

mixed

mixed raw(array $attributes = array())

Create an array of raw attribute arrays.

Parameters

array $attributes

Return Value

mixed

© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.4/Illuminate/Database/Eloquent/FactoryBuilder.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部