Skip to content

Commit

Permalink
Added url Tags to css and js
Browse files Browse the repository at this point in the history
  • Loading branch information
Wulfheart committed Jun 10, 2020
1 parent dd7f7a4 commit eefc2f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stubs/default/resources/views/layouts/base.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

@hasSection('title')

<title>@yield('title') - {{ config('app.name') }}</title>
@else
<title>{{ config('app.name') }}</title>
@endif

<!-- Favicon -->
<link rel="shortcut icon" href="{{ asset('favicon.ico') }}">
<link rel="shortcut icon" href="{{ url(asset('favicon.ico')) }}">

<!-- Fonts -->
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">

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

<!-- CSRF Token -->
Expand All @@ -27,7 +27,7 @@
<body>
@yield('body')

<script src="{{ mix('js/app.js') }}"></script>
<script src="{{ url(mix('js/app.js')) }}"></script>
@livewireScripts
</body>
</html>

0 comments on commit eefc2f4

Please sign in to comment.