mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 22:13:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Database\Factories;
 | 
						|
 | 
						|
use Crater\Models\Currency;
 | 
						|
use Crater\Models\Tax;
 | 
						|
use Crater\Models\TaxType;
 | 
						|
use Crater\Models\User;
 | 
						|
use Illuminate\Database\Eloquent\Factories\Factory;
 | 
						|
 | 
						|
class TaxFactory extends Factory
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * The name of the factory's corresponding model.
 | 
						|
     *
 | 
						|
     * @var string
 | 
						|
     */
 | 
						|
    protected $model = Tax::class;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Define the model's default state.
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function definition()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'tax_type_id' => TaxType::factory(),
 | 
						|
            'percent' => function (array $item) {
 | 
						|
                return TaxType::find($item['tax_type_id'])->percent;
 | 
						|
            },
 | 
						|
            'name' => function (array $item) {
 | 
						|
                return TaxType::find($item['tax_type_id'])->name;
 | 
						|
            },
 | 
						|
            'company_id' => User::find(1)->companies()->first()->id,
 | 
						|
            'amount' => $this->faker->randomDigitNotNull,
 | 
						|
            'compound_tax' => $this->faker->randomDigitNotNull,
 | 
						|
            'base_amount' => $this->faker->randomDigitNotNull,
 | 
						|
            'currency_id' => Currency::where('name', 'US Dollar')->first()->id,
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |