Skip to content

Commit 3a40b8b

Browse files
Merge pull request #21 from liberusoftware/copilot/update-footer-address-copyright
Update footer copyright entity to Liberu Group Ltd
2 parents fdc6484 + 2e8e2af commit 3a40b8b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

database/seeders/SiteSettingsSeeder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public function run()
1414
$settings->site_currency = '£';
1515
$settings->site_default_language = 'en';
1616
$settings->site_address = 'Liberu Group Ltd, 15 Commercial Road, Swindon, Wiltshire, United Kingdom SN1 5NF';
17+
$settings->footer_copyright = '© ' . date('Y') . ' Liberu Group Ltd. All Rights Reserved.';
1718
$settings->site_country = 'United Kingdom';
1819
$settings->site_email = 'info@liberurealestate.com';
1920
$settings->whatsapp_url = 'https://wa.me/+441793200950';

resources/views/components/footer.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ class="hover:text-[#f5c518] transition-colors inline-flex items-center gap-1.5">
165165

166166
<div class="flex flex-col items-center gap-3 sm:flex-row sm:justify-between text-xs text-neutral-500">
167167
<span>
168-
{{ $siteSettings->footer_copyright ?? ('© ' . now()->year . ' Liberu Software Ltd. All Rights Reserved.') }}
168+
{{ $siteSettings->footer_copyright ?? ('© ' . now()->year . ' Liberu Group Ltd. All Rights Reserved.') }}
169169
</span>
170170
<div class="flex items-center gap-4">
171171
<a href="{{ url('/privacy-policy') }}" class="hover:text-neutral-300 transition-colors">Privacy Policy</a>

0 commit comments

Comments
 (0)