laravel-performance/database/factories/ProductBigIntFactory.php

26 lines
469 B
PHP

<?php
namespace Database\Factories;
use App\Models\ProductBigInt;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
/**
* @extends Factory<ProductBigInt>
*/
class ProductBigIntFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'name' => fake()->bothify('cat ##??')
];
}
}