*/ class AzmayeshSampleFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'azmayesh_id' => Azmayesh::factory(), 'azmayesh_project_name' => function (array $attributes) { return Azmayesh::query()->find($attributes['azmayesh_id'])->project_name; }, 'data' => json_encode(['test']), ]; } }