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