@extends($site_path.'.layouts.default') @section('head') {{ $site_name }} @stop @section('content')
{{-- tag 標題 --}}
{{ $products_tags->name }}
{{-- tag 說明 --}} @if ($products_tags) {{ $products_tags->content }} @endif

產品規格

@foreach ($list as $element)
@if (!is_null($element->products_images)) @if (!empty($element->products_images->first()->file_name) && file_exists('uploads/products/normal/'.$element->products_images->first()->file_name)) {{ HTML::image('uploads/products/normal/'.$element->products_images->first()->file_name) }} @else 未上傳圖片 @endif @endif

{{ $element->name }}
{{ $element->spec }}

@if ($element->stock > 0) 加入購物車 @else 已售完 @endif
@endforeach
@stop @section('side')
{{ $title }}
@stop