Skip to content

Commit

Permalink
Merge pull request #38 from Wulfheart/hurl
Browse files Browse the repository at this point in the history
Added url Tags to css and js
  • Loading branch information
imliam authored Jul 19, 2020
2 parents b7f8b5f + eefc2f4 commit c2c6c0a
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 c2c6c0a

Please sign in to comment.