diff --git a/resources/views/components/finishing.blade.php b/resources/views/components/finishing.blade.php index 462e0c1..30d051c 100644 --- a/resources/views/components/finishing.blade.php +++ b/resources/views/components/finishing.blade.php @@ -104,6 +104,15 @@ use App\Models\Page; Page::first()->update(['contact' => $contact]); } + + $data['page'] = Page::select('home_message')->first(); + if (strpos($data['page']->home_message, 'LittleLink Custom') !== false) { + $home_message = ' +
Take control of your online presence with LinkStack the privacy-focused, open-source link management platform. Create a customizable profile page to manage all your important links in one convenient location and give your audience a seamless browsing experience.
+ '; + Page::first()->update(['home_message' => $home_message]); + } + /* Updates button database entries */ Schema::disableForeignKeyConstraints(); try {Artisan::call('migrate', ['--force' => true]);} catch (exception $e) {}