Skip to content

Commit 4a46739

Browse files
authored
Merge pull request #106 from AhsanShabbir/bug-fix
fix asset paths
2 parents 68e3ce2 + 359f5da commit 4a46739

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

resources/views/layout.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta http-equiv="X-UA-Compatible" content="ie=edge">
77
<meta name="csrf-token" content="{{ csrf_token() }}">
88
<title>{{ config('app.name') }}</title>
9-
<link rel="stylesheet" href="/vendor/translation/css/main.css">
9+
<link rel="stylesheet" href="{{ asset('/vendor/translation/css/main.css') }}">
1010
</head>
1111
<body>
1212

@@ -19,6 +19,6 @@
1919

2020
</div>
2121

22-
<script src="/vendor/translation/js/app.js"></script>
22+
<script src="{{ asset('/vendor/translation/js/app.js') }}"></script>
2323
</body>
24-
</html>
24+
</html>

0 commit comments

Comments
 (0)