mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-04-05 22:21:08 +02:00
Update finishing.blade.php
This commit is contained in:
parent
ecae2290d6
commit
50c855a18c
@ -104,6 +104,15 @@ use App\Models\Page;
|
|||||||
Page::first()->update(['contact' => $contact]);
|
Page::first()->update(['contact' => $contact]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$data['page'] = Page::select('home_message')->first();
|
||||||
|
if (strpos($data['page']->home_message, 'LittleLink Custom') !== false) {
|
||||||
|
$home_message = '
|
||||||
|
<p>Take control of your online presence with <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>
|
||||||
|
';
|
||||||
|
Page::first()->update(['home_message' => $home_message]);
|
||||||
|
}
|
||||||
|
|
||||||
/* Updates button database entries */
|
/* Updates button database entries */
|
||||||
Schema::disableForeignKeyConstraints();
|
Schema::disableForeignKeyConstraints();
|
||||||
try {Artisan::call('migrate', ['--force' => true]);} catch (exception $e) {}
|
try {Artisan::call('migrate', ['--force' => true]);} catch (exception $e) {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user