@extends('frontend') @section('title', $product->name) @section('content')
@widget('AttachmentImage', ['attachment' => $product->image])

{{$product->name}}

{{$product->token}} Tokens
{!! $product->description !!}

@if (!$product->inStock || $product->inStock < 0) @lang('messages.outOfStock') @else
@endif

@lang('messages.relatedProducts')

@foreach ($relatedProducts as $product) @endforeach
@endsection