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