{{-- Company Info --}}
@php $footerInfo = \App\Models\FooterInfo::first(); @endphp @if($footerInfo)
@if($footerInfo->logo && file_exists(public_path('uploads/'.$footerInfo->logo))) Logo @endif
@if($footerInfo->description)

{{ $footerInfo->description }}

@endif @else

Footer info not set yet. Please add from admin panel.

@endif
{{-- Quick Links --}} @php $footerLinks = \App\Models\FooterLink::orderBy('order')->get(); @endphp

Quick links

@foreach($footerLinks as $link) {{ $link->title }} @endforeach
{{-- Latest News --}} @php $footerNews = \App\Models\FooterNews::latest()->get(); @endphp

Latest News

@foreach($footerNews as $news)

@if($news->link) {{ $news->title }} @else {{ $news->title }} {{ $news->description }} @endif

@endforeach
{{-- Brochure + Social --}} @php $socialLinks = \App\Models\FooterSocialLink::orderBy('order')->get(); @endphp
@if($footerInfo && $footerInfo->brochure_link)

Download Brochure

Brochure @endif

Follow us on social accounts

@foreach($socialLinks as $social) @if($social->icon_image) {{ $social->platform }} @endif @endforeach
{{-- Footer Bottom Text --}}
{{-- Left side text --}} @if($footerInfo && $footerInfo->bottom_text) © {{ date('Y') }} All Rights Reserved @else {{ $footerInfo->bottom_text }} @endif {{-- Right side text --}} Develop & Designed By Meking Digittrix