Seed with a collaped Alt Three group

This commit is contained in:
James Brooks
2016-01-30 11:54:30 +00:00
parent ce6a72c71c
commit e8b5a8268f
+17 -5
View File
@@ -80,8 +80,13 @@ class DemoSeederCommand extends Command
{ {
$defaultGroups = [ $defaultGroups = [
[ [
'name' => 'Websites', 'name' => 'Websites',
'order' => 1, 'order' => 1,
'collapsed' => false,
], [
'name' => 'Alt Three',
'order' => 2,
'collapsed' => true,
], ],
]; ];
@@ -123,11 +128,18 @@ class DemoSeederCommand extends Command
'link' => 'https://cachethq.io', 'link' => 'https://cachethq.io',
], [ ], [
'name' => 'Blog', 'name' => 'Blog',
'description' => 'The Cachet Blog.', 'description' => 'The Alt Three Blog.',
'status' => 1, 'status' => 1,
'order' => 0, 'order' => 0,
'group_id' => 1, 'group_id' => 2,
'link' => 'https://blog.cachethq.io', 'link' => 'https://blog.alt-three.com',
], [
'name' => 'StyleCI',
'description' => 'The PHP Coding Style Service.',
'status' => 1,
'order' => 1,
'group_id' => 2,
'link' => 'https://styleci.io',
], ],
]; ];