snipe-it/database/factories/DepreciationFactory.php

62 lines
1.3 KiB
PHP
Raw Normal View History

2017-10-07 05:30:53 -07:00
<?php
2021-06-10 13:19:27 -07:00
2021-06-10 13:17:44 -07:00
namespace Database\Factories;
use App\Models\Depreciation;
2023-03-14 11:34:58 -07:00
use App\Models\User;
2021-06-10 13:19:27 -07:00
use Illuminate\Database\Eloquent\Factories\Factory;
2017-10-07 05:30:53 -07:00
2021-06-10 13:17:44 -07:00
class DepreciationFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Depreciation::class;
2021-06-10 13:17:44 -07:00
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'name' => $this->faker->unique()->catchPhrase(),
'user_id' => User::factory()->superuser(),
'months' => 36,
2021-06-10 13:17:44 -07:00
];
}
2017-10-07 05:30:53 -07:00
2021-06-10 13:17:44 -07:00
public function computer()
{
return $this->state(function () {
return [
'name' => 'Computer Depreciation',
'months' => 36,
];
});
}
2017-10-07 05:30:53 -07:00
2021-06-10 13:17:44 -07:00
public function display()
{
return $this->state(function () {
return [
'name' => 'Display Depreciation',
'months' => 12,
];
});
}
2017-10-07 05:30:53 -07:00
2021-06-10 13:17:44 -07:00
public function mobilePhones()
{
return $this->state(function () {
return [
'name' => 'Mobile Phone Depreciation',
'months' => 24,
];
});
}
}