@include('layouts.webpage.topbar_two') @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.webpage.footer', ['footers' => $footers]) @include('layouts.webpage.virtual_building') @include('layouts.webpage.chat_box')