@extends('layout.basic_front') @section("content")
{{ HTML::image($product->img_path,"",['class'=>"img-circle",'style'=>'width:100px;height:100px']) }}

{{$product->title}}

{{$product->description}}
@if($product->official_url != null) @endif @if($product->shops_id != null) @endif


@foreach($followers as $follower)
{{ HTML::image($follower->img_path,"",['class' => "img-responsive img-circle",'style'=>'width:50px;height:50px']) }}

{{$follower->name}}

@endforeach
@stop