| 1 | <?php |
||
| 11 | class ProjectsSeeder extends Seeder |
||
| 12 | { |
||
| 13 | private $statuses = [ |
||
| 14 | 'Done', |
||
| 15 | 'In Progress', |
||
| 16 | 'Not Started', |
||
| 17 | 'Cancalled', |
||
| 18 | ]; |
||
| 19 | |||
| 20 | private $priorities = [ |
||
| 21 | 'Low', |
||
| 22 | 'Minor', |
||
| 23 | 'Moderate', |
||
| 24 | 'Significant', |
||
| 25 | 'Required', |
||
| 26 | ]; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Run the database seeds. |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | public function run() |
||
| 57 | } |
||
| 58 |