Skip to content

Instantly share code, notes, and snippets.

@vstyler96
Created May 7, 2020 20:34
Show Gist options
  • Save vstyler96/80479fbef7a5c299d8b9c3ea67a03dc7 to your computer and use it in GitHub Desktop.
Save vstyler96/80479fbef7a5c299d8b9c3ea67a03dc7 to your computer and use it in GitHub Desktop.
New Blade App Layout
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'Laravel') }}</title>
<!-- Scripts -->
<script src="{{ asset('js/app.js') }}" defer></script>
<!-- Fonts -->
<link rel="dns-prefetch" href="//fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css">
<!-- Styles -->
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
</head>
<body>
<div id="app">
@yield('content')
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment