2020-01-21 10:22:10 +01:00
|
|
|
<?php
|
2020-10-01 07:33:38 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
2020-10-01 12:49:47 +02:00
|
|
|
use App\Models\Task;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
2020-01-21 10:22:10 +01:00
|
|
|
|
2020-10-01 12:49:47 +02:00
|
|
|
class TaskFactory extends Factory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name of the factory's corresponding model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $model = Task::class;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function definition()
|
2020-11-25 15:19:52 +01:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'description' => $this->faker->text(50),
|
2020-11-01 08:53:43 +01:00
|
|
|
'invoice_id' => null,
|
2020-11-25 15:19:52 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|