Skip to content

Commit 2a2d5a2

Browse files
committed
feat: Prepend storage URL to shop profile image path
1 parent e6db974 commit 2a2d5a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Http/Controllers/SeoBridgeController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function __invoke(Request $request)
5353
if ($shop) {
5454
$data['title'] = "Boutique " . $shop->shop_name . " | Akevas";
5555
$data['description'] = $shop->shop_description;
56-
$data['image'] = $shop->shop_profile;
56+
$data['image'] = URL("/storage/" . $shop->shop_profile);;
5757
}
5858
}
5959
}

0 commit comments

Comments
 (0)