File: /var/www/html/spion/resources/views/layouts/front/main_layout.blade.php
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="{{ asset('assets/front/website/css/style.css') }}">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
{{-- <link rel="stylesheet" type="text/css" href="{{ asset('assets/front/website/css/front-style.css') }}"> --}}
{{-- <link rel="stylesheet" type="text/css" href="{{ asset('assets/front/website/css/select2.min.css') }}"> --}}
<title>index</title>
</head>
<body>
@php
$website_name = App\Models\Setting::getValue('website_name');
$website_phone_number = App\Models\Setting::getValue('website_phone_number', '#');
$address = App\Models\Setting::getValue('address', '#');
$website_description = App\Models\Setting::getValue('website_description', '#');
$website_email = App\Models\Setting::getValue('website_email', '#');
$facebook_url = App\Models\Setting::getValue('facebook_url', '#');
$instagram_url = App\Models\Setting::getValue('instagram_url', '#');
$linkedin_url = App\Models\Setting::getValue('linkedin_url', '#');
$whatsapp_url = App\Models\Setting::getValue('whatsapp_url', '#');
$twitter_url = App\Models\Setting::getValue('twitter_url', '#');
// $vehicle_types = App\Models\VehicleTypes::all();
// $blogs = App\Models\Blog::orderBy('id', 'desc')->take(2)->get();
@endphp
<!-- ========== HEADER ========== -->
@include('front.partial.header')
<!-- ========== END HEADER ========== -->
<!-- ========== MAIN CONTENT ========== -->
@yield('content')
<!-- ========== END MAIN CONTENT ========== -->
<!-- ========== FOOTER ========== -->
@include('front.partial.footer')
<!-- ========== END FOOTER ========== -->
<!-- ========== scripts ========== -->
@include('front.partial.script')
<!-- ========== END scripts ========== -->
@yield('script')
</body>
</html>