Skip to content

Commit 50c855a

Browse files
committed
Update finishing.blade.php
1 parent ecae229 commit 50c855a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

resources/views/components/finishing.blade.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,15 @@
104104
Page::first()->update(['contact' => $contact]);
105105
}
106106
107+
108+
$data['page'] = Page::select('home_message')->first();
109+
if (strpos($data['page']->home_message, 'LittleLink Custom') !== false) {
110+
$home_message = '
111+
<p>Take control of your online presence with&nbsp;<a href="https://linkstack.org/"><strong>LinkStack</strong></a> the privacy-focused, open-source <strong>link management platform</strong>. Create a customizable profile page to manage <strong>all your important links in one convenient location</strong> and give your audience a seamless browsing experience.</p>
112+
';
113+
Page::first()->update(['home_message' => $home_message]);
114+
}
115+
107116
/* Updates button database entries */
108117
Schema::disableForeignKeyConstraints();
109118
try {Artisan::call('migrate', ['--force' => true]);} catch (exception $e) {}

0 commit comments

Comments
 (0)