@include('layouts.sidebar')
@include('layouts.topbar')
@yield('content') @php use App\Models\ContactInfo; $contacts = ContactInfo::oldest()->take(4)->get(); @endphp @include('layouts.contact', ['contacts' => $contacts]) @php use App\Models\FooterInfo; $footers = FooterInfo::all(); @endphp @include('layouts.footer', ['footers' => $footers])