@extends('layouts.backend.app') @section('content')
{{ __('Item Name') }} | {{ __('Quantity') }} | {{ __('Total Amount') }} |
---|---|---|
{{ $itemrow->products->title ?? '' }} | {{ $itemrow->qty ?? '' }} | {{ number_format($itemrow->total*$itemrow->qty,2) }} |
Discount Code: {{ $info->coupon->title ?? '' }}
Discount: {{ $info->discount }}
@endifSubtotal: {{ $info->total }}
Shipping: {{ $info->shipping }}
Total: {{ $info->shipping+$info->total }}