You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AppearanceFactory.php 413B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Database\Factories\Setting;
  3. use App\Models\Setting\Appearance;
  4. use Illuminate\Database\Eloquent\Factories\Factory;
  5. /**
  6. * @extends Factory<Appearance>
  7. */
  8. class AppearanceFactory extends Factory
  9. {
  10. /**
  11. * Define the model's default state.
  12. *
  13. * @return array<string, mixed>
  14. */
  15. public function definition(): array
  16. {
  17. return [
  18. //
  19. ];
  20. }
  21. }