@extends('layouts.app') @php $siteName = App\Models\Setting::get('site_name', '深圳市云创芯电子有限公司'); @endphp @section('title', $product->seoTitle() . ' - ' . $siteName) @section('description', $product->seoDescription()) @section('content')
{{ $product->model ?: $product->slug }}

{{ $product->name }}

@if ($product->category)

分类:{{ $product->category->name }}

@endif @if ($product->summary)

{{ $product->summary }}

@endif @if ($product->description)
{!! nl2br(e($product->description)) !!}
@endif @if ($product->specs)

规格参数

{{ $product->specs }}
@endif
@endsection