mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-28 04:01:10 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			989 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			989 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Database\Factories;
 | |
| 
 | |
| use Crater\Models\Currency;
 | |
| use Crater\Models\Item;
 | |
| use Crater\Models\Unit;
 | |
| use Crater\Models\User;
 | |
| use Illuminate\Database\Eloquent\Factories\Factory;
 | |
| 
 | |
| class ItemFactory extends Factory
 | |
| {
 | |
|     /**
 | |
|      * The name of the factory's corresponding model.
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     protected $model = Item::class;
 | |
| 
 | |
|     /**
 | |
|      * Define the model's default state.
 | |
|      *
 | |
|      * @return array
 | |
|      */
 | |
|     public function definition()
 | |
|     {
 | |
|         return [
 | |
|             'name' => $this->faker->name,
 | |
|             'description' => $this->faker->text,
 | |
|             'company_id' => User::find(1)->companies()->first()->id,
 | |
|             'price' => $this->faker->randomDigitNotNull,
 | |
|             'unit_id' => Unit::factory(),
 | |
|             'creator_id' => User::where('role', 'super admin')->first()->company_id,
 | |
|             'currency_id' => Currency::find(1)->id,
 | |
|             'tax_per_item' => $this->faker->randomElement([true, false])
 | |
|         ];
 | |
|     }
 | |
| }
 |