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