*/ class FileFactory extends Factory { protected $model = File::class; public function definition(): array { $filename = $this->faker->lexify('log-????.edi'); return [ 'path' => 'uploads/test/' . $filename, 'filename' => $filename, 'mimetype' => 'text/plain', 'filesize' => 10, 'hash' => Str::random(64), 'uploaded_by' => null, ]; } }