| 12345678910111213141516171819202122232425262728293031 | 
							- <?php
 - 
 - namespace Database\Factories;
 - 
 - use App\Models\Document\DocumentItem;
 - use Illuminate\Database\Eloquent\Factories\Factory;
 - 
 - /**
 -  * @extends Factory<DocumentItem>
 -  */
 - class DocumentItemFactory extends Factory
 - {
 -     /**
 -      * The name of the factory's corresponding model.
 -      *
 -      * @var string
 -      */
 -     protected $model = DocumentItem::class;
 - 
 -     /**
 -      * Define the model's default state.
 -      *
 -      * @return array<string, mixed>
 -      */
 -     public function definition(): array
 -     {
 -         return [
 -             //
 -         ];
 -     }
 - }
 
 
  |