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