27 lines
921 B
PHP
27 lines
921 B
PHP
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>PC 商城首页 - SaaSShop</title>
|
|
<link rel="stylesheet" href="/css/public-pages.css">
|
|
</head>
|
|
<body class="pc-body">
|
|
<div class="pc-top"><strong>SaaSShop PC 端商城首页</strong></div>
|
|
<div class="pc-wrap">
|
|
<p>这是 PC 端模板入口,后续可扩展导航、分类、搜索、购物车与会员中心。</p>
|
|
<p><a href="/">返回项目首页</a></p>
|
|
<div class="pc-grid">
|
|
@foreach($products as $product)
|
|
<div class="shop-card">
|
|
<h3>{{ $product->title }}</h3>
|
|
<p>{{ $product->summary }}</p>
|
|
<p class="price">¥{{ number_format($product->price, 2) }}</p>
|
|
<p>SKU: {{ $product->sku }}</p>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|