@extends('layouts.app') @section('content')

{{ $item->name }}

Special Price UGX {{ is_null($item->discounted_rate) ? number_format($item->rate) : number_format($item->discounted_rate) }}

@if(!is_null($item->discounted_rate))

Regular Price: UGX {{ number_format($item->rate) }}

@endif

Availability: {{ $item->availability }}

Quick Overview

{{ $item->overview }}

 
 

{{ $item->description }}

Customer Reviews

@foreach($item->reviews as $review)

{{$review->summary }}

{{ $review->review }}

{{ $review->nickname }} (Posted {{ $review->created_at->diffForHumans() }})

@endforeach

Write Your Own Review

@csrf

You're reviewing: @if(auth()->check()){{ Auth::user()->name }}@endif

How do you rate this product?*

@csrf
@endsection