@extends('layouts.reseller') @section('content')
| Product | Price | Qty | Total |
|---|---|---|---|
|
{{ $item->product->name }}
@if(isset($item->options['discount_percentage']) && $item->options['discount_percentage'] > 0)
{{ $item->options['discount_percentage'] }}% OFF
@endif
@if(isset($item->options['attributes']))
@foreach($item->options['attributes'] as $attr)
{{ $attr['attribute'] }}: {{ $attr['value'] }}
@endforeach
@endif
|
@if(isset($item->options['discount_percentage']) && $item->options['discount_percentage'] > 0) ₹{{ number_format($item->price / (1 - ($item->options['discount_percentage']/100)), 2) }} @endif ₹{{ number_format($item->price, 2) }} | {{ $item->quantity }} | ₹{{ number_format($item->total, 2) }} |
Please review the updated pricing above and accept the quotation to process your order.
Your order is now being processed.