Skip to content

Commit

Permalink
Update head.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Freundschaft authored Aug 22, 2023
1 parent d07788f commit a5d8141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/layouts/includes/head.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>@isset($title){{ $title }} | @endisset{{ setting()->get('brand.name', config('app.name')) }}</title>
@vite(['resources/js/app.js', 'resources/sass/app.scss'])
@if(setting()->has('brand.favicon') && Storage::exists(setting()->get('brand.favicon')))
@if(setting()->has('brand.favicon'))
<link href="{{ storage_url(setting()->get('brand.favicon')) }}" rel="icon">
@else
<link href="{{ asset('favicon.ico') }}" rel="icon">
Expand Down

0 comments on commit a5d8141

Please sign in to comment.