@php $companyNav = [ [ 'label' => 'Home', 'path' => route('home'), ], [ 'label' => 'About Us', 'path' => url('about-us'), ], [ 'label' => 'Websites', 'path' => url('websites'), ], [ 'label' => 'Blog', 'path' => url('blog'), ], [ 'label' => 'Contact Us', 'path' => url('contact'), ], ]; $socialData = [ [ 'name' => 'Facebook', 'image' => config('icons.facebook'), 'url' => $siteInfo->facebook, 'title' => 'Facebook', ], [ 'name' => 'Google', 'image' => config('icons.google'), 'url' => $siteInfo->google_plus, 'title' => 'Google', ], [ 'name' => 'Linkedin', 'image' => config('icons.linkedin'), 'url' => $siteInfo->linkedin, 'title' => 'LinkedIn', ], [ 'name' => 'Twitter', 'image' => config('icons.twitter'), 'url' => $siteInfo->twitter, 'title' => 'Twitter', ], [ 'name' => 'Youtube', 'image' => config('icons.youtube'), 'url' => $siteInfo->youtube, 'title' => 'Youtube', ], [ 'name' => 'Instagram', 'image' => config('icons.instagram'), 'url' => $siteInfo->instagram, 'title' => 'Instagram', ], ]; @endphp