1234567891011121314151617181920212223 |
- <?php
-
- namespace Database\Factories\Core;
-
- use Illuminate\Database\Eloquent\Factories\Factory;
-
- /**
- * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Core\Department>
- */
- class DepartmentFactory extends Factory
- {
- /**
- * Define the model's default state.
- *
- * @return array<string, mixed>
- */
- public function definition(): array
- {
- return [
- //
- ];
- }
- }
|