*/ public function definition(): array { return [ 'name' => $this->faker->words(5, true), 'intro' => '', 'fields' => [], ]; } /** * @param array $fields */ public function fields(array $fields): self { return $this->state(['fields' => $fields]); } public function intro(string $intro): self { return $this->state(['intro' => $intro]); } /** * @param mixed $args */ public function __call(string $method, $args): self { return $this->state([$method => $args[0]]); } }