26 lines
1.1 KiB
PHP
26 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="vi">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ $history->product_title ?? 'Sản phẩm Shopee' }}</title>
|
|
|
|
<!-- Open Graph Meta Tags for Zalo / Facebook Link Preview -->
|
|
<meta property="og:title" content="{{ $history->product_title ?? 'Sản phẩm Shopee' }}">
|
|
<meta property="og:description" content="Giá bán: {{ $history->product_price > 0 ? number_format($history->product_price) . 'đ' : 'Xem chi tiết' }} | Click mua ngay trên Shopee!">
|
|
<meta property="og:url" content="{{ request()->url() }}">
|
|
@if($history->product_image)
|
|
<meta property="og:image" content="{{ $history->product_image }}">
|
|
@endif
|
|
<meta property="og:type" content="product">
|
|
|
|
<!-- Fallback Redirect Meta -->
|
|
<meta http-equiv="refresh" content="0; url={{ $history->affiliate_url }}">
|
|
</head>
|
|
<body>
|
|
<p>Đang chuyển hướng sang Shopee... Nếu không tự động chuyển hướng, vui lòng <a href="{{ $history->affiliate_url }}">bấm vào đây</a>.</p>
|
|
<script>
|
|
window.location.href = "{{ $history->affiliate_url }}";
|
|
</script>
|
|
</body>
|
|
</html>
|