@extends('frontend.layouts.app')
@section('contents')
| Product | Price | Stock Status | Remove | |
|---|---|---|---|---|
{{ $item->product?->name }}
@php
$rating = $item->product?->rating();
$percent = ($rating / 5) * 100;
@endphp
|
@php
$price = $item->product?->getEffectivePriceAndStock();
@endphp
{{ config('settings.site_currency_icon') }} {{ $price['price'] }} |
@if($price['in_stock']) In Stock @else Out of Stock @endif | ||