Files
GSB-Construction/Modules/ProjectManagement/database/factories/TaskFactory.php
Impenggg 42ba980f7a
Some checks failed
Tests / PHP 8.3 (push) Has been cancelled
Tests / PHP 8.4 (push) Has been cancelled
Tests / PHP 8.5 (push) Has been cancelled
feat: implement core material requisition, project management, and daily reporting modules with workflow validation and automated documentation support.
2026-08-01 15:38:57 +08:00

21 lines
485 B
PHP

<?php
namespace Modules\ProjectManagement\Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Modules\ProjectManagement\Models\Task;
class TaskFactory extends Factory
{
protected $model = Task::class;
public function definition(): array
{
return [
'name' => fake()->sentence(3),
'description' => fake()->sentence(),
'status' => 'pending',
'sort_order' => 0,
];
}
}