ok
This commit is contained in:
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use App\Models\Accessory;
|
||||
use App\Models\Asset;
|
||||
use App\Models\User;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
class CheckoutAcceptanceFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function definition()
|
||||
{
|
||||
return [
|
||||
'checkoutable_type' => Asset::class,
|
||||
'checkoutable_id' => Asset::factory(),
|
||||
'assigned_to_id' => User::factory(),
|
||||
];
|
||||
}
|
||||
|
||||
public function forAccessory()
|
||||
{
|
||||
return $this->state([
|
||||
'checkoutable_type' => Accessory::class,
|
||||
'checkoutable_id' => Accessory::factory(),
|
||||
]);
|
||||
}
|
||||
|
||||
public function pending()
|
||||
{
|
||||
return $this->state([
|
||||
'accepted_at' => null,
|
||||
'declined_at' => null,
|
||||
]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user