PHP Classes

File: resources/views/app.blade.php

Recommend this page to a friend!
  Classes of Robert Devenyi   Iceburg CRM   resources/views/app.blade.php   Download  
File: resources/views/app.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Iceburg CRM
CRM application to manage contacts
Author: By
Last change:
Date: 1 year ago
Size: 879 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html data-theme="{{\app\models\Setting::getSetting('theme')}}" lang="{{ str_replace('_', '-', app()->getLocale()) }}">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <title inertia>{{ config('app.name', 'Laravel') }}</title>

        <!-- Fonts -->
        <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">

        <!-- Styles -->
        <link rel="stylesheet" href="{{ mix('css/app.css') }}">

        <!-- Scripts -->
        @routes
        <script src="{{ mix('js/app.js') }}" defer></script>
        @inertiaHead
    </head>
    <body class="font-sans antialiased">
        @inertia

        @env ('local')
            <script src="http://localhost:8080/js/bundle.js"></script>
        @endenv
    </body>
</html>