@extends('ecommerce::frontend.layout.main') @section('title') {{ $ecommerce_setting->site_title ?? '' }} @endsection @section('description') @endsection @push('css') @endpush @section('content')
Product | Qty | Price |
---|---|---|
@if($product->image!==null)
@php
$images = explode(',', $product->image);
$product->image = $images[0];
@endphp
|
{{ $product->qty }} | {{ $product->net_unit_price }} |
{{trans('file.Shipping')}} | (+) {{$currency->symbol ?? $currency->code}}{{ $sale->shipping_cost ?? '0' }} | |
{{trans('file.Discount')}} | (-) {{$currency->symbol ?? $currency->code}}{{ $sale->coupon_discount ?? '0' }} | |
{{trans('file.Total')}} |
{{$currency->symbol ?? $currency->code}}{{ ($sale->grand_total - $sale->coupon_discount) }} |