@extends('shop.skele') @section('shop_title') {{$product->name}} Info @endsection @section('shop_content')
{{$product->name}}
{{$product->brand .': '.$product->model}}
@if($product->on_promotion) ${{$product->price}} ${{$product->discounted_price}} @else ${{$product->price}} @endif

{!! $product->name !!}

{!! $product->description !!}

Product Highlights:
{!! $product->highlights !!}
Weight {{$product->weight}}
Materials {{$product->material}}
Dimensions {{$product->dimensions}}
12 Other Products In The Same Category:
@foreach($products as $product)
@if($product->on_promotion) ${{$product->price}} ${{$product->discounted_price}} @else ${{$product->price}} @endif
{{$product->name}}
@endforeach
@endsection