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