Skip to content

Commit 9fc837c

Browse files
committed
Update 2022_09_22_123137_link-type.php
1 parent cfe4419 commit 9fc837c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

database/migrations/2022_09_22_123137_link-type.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,18 @@ public function down()
5656

5757
public function SeedLinkTypes() {
5858

59+
DB::table($this->TableName)->updateOrInsert([
60+
'typename' => 'predefined',
61+
'title' => 'Predefined Site',
62+
'icon' => 'bi bi-boxes',
63+
'description' => 'Select from a list of predefined websites and have your link automatically styled using that sites brand colors and icon.'
64+
]);
65+
5966
DB::table($this->TableName)->updateOrInsert([
6067
'typename' => 'link',
6168
'title' => 'Custom Link',
6269
'icon' => 'bi bi-link',
63-
'description' => 'Create a Custom Button that goes to any website. ',
70+
'description' => 'Create a Custom Link that goes to any website. Customize the button styling and icon, or use the favicon from the website as the button icon.',
6471
'params' => '[{
6572
"tag": "input",
6673
"id": "link_title",
@@ -86,13 +93,6 @@ public function SeedLinkTypes() {
8693
]'
8794
]);
8895

89-
DB::table($this->TableName)->updateOrInsert([
90-
'typename' => 'predefined',
91-
'title' => 'Predefined Site',
92-
'icon' => 'bi bi-boxes',
93-
'description' => 'Select from a list of predefined websites and have your link automatically styled using that sites brand colors and icon.'
94-
]);
95-
9696
DB::table($this->TableName)->updateOrInsert([
9797
'typename' => 'heading',
9898
'title' => 'Heading',

0 commit comments

Comments
 (0)