*/ class MicropubClientFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = MicropubClient::class; /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'client_url' => $this->faker->url, 'client_name' => $this->faker->company, ]; } }