HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/analytics.komma.nl/resources/views/base.blade.php
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <title>@yield('title','Analytics tool')</title>
        <meta name="description" content="@yield('meta_description', '')">
        <meta name="csrf-token" content="{{ csrf_token() }}">

        {{-- This will prevent devices from automatically generating phone links --}}
        <meta name="format-detection" content="telephone=no">

        <link href="{{ mix('css/style.css') }}" rel="stylesheet"/>
        <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap" rel="stylesheet">

    </head>
    <body>

        @yield('content')

        @stack('js-script')

        @section('js')
            <script defer type="text/javascript" src="{{ mix('js/manifest.js') }}"></script>
            <script defer type="text/javascript" src="{{ mix('js/vendor.js') }}"></script>
            <script defer type="text/javascript" src="{{ mix('js/app.js') }}"></script>
        @show

    </body>
</html>