1234567891011121314151617181920212223242526 |
- <?php
- namespace Database\Factories;
- use Illuminate\Database\Eloquent\Factories\Factory;
- use Illuminate\Support\Facades\Auth;
- /**
- * @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\AssetGroup>
- */
- class AssetGroupFactory extends Factory
- {
- /**
- * Define the model's default state.
- *
- * @return array<string, mixed>
- */
- public function definition(): array
- {
- return [
- 'name' => fake()->name(),
- 'sequence' => fake()->randomNumber(1, 9),
- 'company_id' => Auth::user()->company_id,
- ];
- }
- }
|