We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f68b098 commit 94a7fe8Copy full SHA for 94a7fe8
2 files changed
database/help_desk.sql
@@ -67,7 +67,7 @@ VALUES (1, 'Lowest', '#dcfce7', '#22c55e', 'fa-arrow-down', NULL, '2022-09-19 10
67
INSERT INTO `ticket_statuses` (`id`, `title`, `text_color`, `bg_color`, `default`, `deleted_at`, `created_at`,
68
`updated_at`, `slug`)
69
VALUES (1, 'Created', '#6b7280', '#f3f4f6', 1, NULL, '2022-09-19 09:17:50', '2022-09-19 11:30:48', 'created'),
70
- (2, 'In progress', '#0ea5e9', '#e0f2fe', 0, NULL, '2022-09-19 09:19:17', '2022-09-19 11:30:48', 'in-progress'),
+ (2, 'In progress', '#0ea5e9', '#e0f2fe', 0, NULL, '2022-09-19 09:19:17', '2022-09-19 11:30:48', 'in_progress'),
71
(3, 'Done', '#f97316', '#ffedd5', 0, NULL, '2022-09-19 09:21:17', '2022-09-19 11:30:48', 'done'),
72
(4, 'Validated', '#22c55e', '#dcfce7', 0, NULL, '2022-09-19 09:21:29', '2022-09-19 11:30:48', 'validated'),
73
(5, 'Rejected', '#ef4444', '#fee2e2', 0, NULL, '2022-09-19 09:21:41', '2022-09-19 11:30:48', 'rejected');
public/docs/index.html
@@ -165,6 +165,7 @@ <h2>Installation</h2>
165
</li>
166
<li>Install docker container <code>./vendor/sail/bin up -d</code></li>
167
<li>Database migration: using the docker terminal for <strong>laravel.test-1 container run this command </strong> <code>php artisan migrate</code></li>
168
+ <li>Database seed: using the docker terminal for <strong>laravel.test-1 container run this command </strong> <code>php artisan db:seed</code></li>
169
<li>
170
<strong>Optional</strong> if you wan't some demo data:
171
<ul>
0 commit comments