@php $siteFavicon = \App\Models\Setting::where('key', 'site_favicon')->first(); @endphp @if($siteFavicon && $siteFavicon->value) @endif @stack('styles')
@php $siteName = \App\Models\Setting::get('site_name', 'Brew & Bean'); $siteLogo = \App\Models\Setting::where('key', 'site_logo')->first(); $footerAbout = \App\Models\Setting::get('footer_about', 'Artisan coffee and specialty drinks made with passion and expertise.'); $contactAddress = \App\Models\Setting::get('contact_address', '123 Coffee Street, Brewville, CA 90210'); $contactPhone = \App\Models\Setting::get('contact_phone', '(555) 123-4567'); $hoursWeekdays = \App\Models\Setting::get('hours_weekdays', 'Monday - Friday: 6am - 8pm'); $hoursSaturday = \App\Models\Setting::get('hours_saturday', 'Saturday: 7am - 9pm'); $hoursSunday = \App\Models\Setting::get('hours_sunday', 'Sunday: 7am - 7pm'); $footerCopyright = \App\Models\Setting::get('footer_copyright', '© ' . date('Y') . ' Brew & Bean. All rights reserved.'); $socialFacebook = \App\Models\Setting::get('social_facebook'); $socialInstagram = \App\Models\Setting::get('social_instagram'); $socialTwitter = \App\Models\Setting::get('social_twitter'); @endphp