Skip to content

Commit

Permalink
Merge pull request #1582 from fey/fix-logo
Browse files Browse the repository at this point in the history
fix [#1578] fix logo path
  • Loading branch information
fey authored Jul 26, 2023
2 parents ed5fa0a + 4f5e363 commit 02ea9a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/layouts/_nav.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<header class="navbar navbar-expand-lg">
<nav class="container py-2 border-bottom">
<a href="{{ LaravelLocalization::getLocalizedURL($currentLocale, route('home')) }}" class="navbar-brand">
<img src="images/logo-{{$currentLocale}}.svg" alt="{{ __('layout.nav.logo_alt') }}" height="25px" class="align-baseline"></a>
<img src="{{ mix("images/logo-$currentLocale.svg") }}" alt="{{ __('layout.nav.logo_alt') }}" height="25px" class="align-baseline"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar-responsive"
aria-controls="navbar-responsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
Expand Down

0 comments on commit 02ea9a3

Please sign in to comment.