@extends('layouts.app') @section('content')
{{-- --}}
Single Product
Single Product

{{$entity->name}}

@if($entity->hasDiscount()) {{$entity->displayprice}} {{$entity->discountedPrice()}} @else {{$entity->displayprice}} @endif
{{$entity->kg}} Kilogram
{{$entity->inStock() ? 'In Stock' : 'Ouf of Stock' }}

{{$entity->description}}

@if($entity->inStock()) @endif
@include('includes.productfooter') @endsection