*/ class JoinedFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition() { return [ 'collective_id' => Collective::first(), 'url' => $this->faker->url(), 'subject' => $this->faker->word(), 'image' => $this->faker->imageUrl(), 'approved' => $this->faker->boolean() ]; } }