| 1234567891011121314151617181920212223242526 |
- <?php
-
- namespace Database\Factories;
-
- use Illuminate\Database\Eloquent\Factories\Factory;
-
- /**
- * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Product>
- */
- class ProductFactory extends Factory
- {
- /**
- * Define the model's default state.
- *
- * @return array<string, mixed>
- */
- public function definition()
- {
- return [
- 'name' => $this->faker->lexify('Product ????????'),
- 'price' => $this->faker->randomNumber(5, true),
- 'unit' => 'PC',
- ];
- }
- }
|