Skip to content

Commit 805340f

Browse files
committed
url('
1 parent 1b7a4e1 commit 805340f

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

app/Http/Controllers/User/ProductController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function index(Request $request)
4848
$carts = Session::get('carts');
4949

5050
return view(
51-
'User.products.list',
51+
'user.products.list',
5252
compact('products', 'categories', 'title', 'productsInCart', 'carts', 'price', 'quantity', 'quantity_total', 'subtotal', 'total_cart')
5353
);
5454
}

public/teamplate/css/custom.css

Whitespace-only changes.

resources/views/user/layout/head.blade.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@
1010
<!-- GOOGLE WEB FONT -->
1111
<link href='https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css' rel='stylesheet'>
1212
<!-- Bootstrap CSS -->
13-
<link href="{{ asset('teamplate/css/bootstrap.css') }}" rel="stylesheet">
14-
<link href="{{ asset('teamplate/css/bootstrap.min.css') }}" rel="stylesheet">
13+
<link href="{{ url('teamplate/css/bootstrap.css') }}" rel="stylesheet">
14+
<link href="{{ url('teamplate/css/bootstrap.min.css') }}" rel="stylesheet">
1515
<!-- Bootstrap Icon -->
1616
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css">
1717
<!-- BASE CSS -->
1818
<link href="{{ asset('teamplate/css/vendors.min.css') }}" rel="stylesheet">
1919
<link href="{{ asset('teamplate/css/style.css') }}" rel="stylesheet">
2020
<!--==================== -Main css- ====================-->
21-
<link href="{{ asset('teamplate/css/custom.css') }}" rel="stylesheet">
2221
<!-- Blog CSS -->
2322
<link href="{{ asset('teamplate/css/blog.css') }}" rel="stylesheet">
2423
<!-- Shop CSS -->

0 commit comments

Comments
 (0)