Files
crater/database/factories/TaxFactory.php
Mohit Panjwani 89ee58590c build version 400
2020-12-02 17:54:08 +05:30

39 lines
945 B
PHP

<?php
namespace Database\Factories;
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::where('role', 'super admin')->first()->company_id,
'amount' => $this->faker->randomDigitNotNull
];
}
}