@extends('layouts.app') @section('title',$prod->name) @section('content')

{{$prod->name}}

{{$prod->category->name}}
@if(Session::has('destination')) @if(Session::get('destination') == 'wholesale') @if (Auth::guest())

Please sign in to view wholesale price.

@else

$ {{$prod->price}} (per unit)

@endif @else
$ {{$prod->price}}

@endif @else
$ {{$prod->price}}

@endif
Item Number:{{$prod->sku}}

Description
{{$prod->description}}
@if(Session::has('destination')) @if(Session::get('destination') == 'wholesale') @if (!Auth::guest())
Unit/Measure:{{$prod->unit->name}}/{{$prod->measure->name}}
@endif @endif @endif @if(Session::has('destination')) @if(Session::get('destination') == 'wholesale') @if (Auth::guest()) @else
{!! Form::open(['method'=>'POST','action' => ['SiteController@addToCart', $prod->id]]) !!} {!! Form::number('qty', 1 ,['class'=>'quantity text-center','placeholder'=>'Quantity','min'=>'1']) !!} {!! Form::submit('Add to Cart', ['class'=>'btn btn-success pl-2 pr-2']) !!} {!! Form::close() !!}
@endif @else
{!! Form::open(['method'=>'POST','action' => ['SiteController@addToCart', $prod->id]]) !!} {!! Form::number('qty', 1 ,['class'=>'quantity text-center','placeholder'=>'Quantity','min'=>'1']) !!} {!! Form::submit('Add to Cart', ['class'=>'btn btn-success pl-2 pr-2']) !!} {!! Form::close() !!}
@endif @else @endif
@endsection