@extends('front.themes.' . env('THEME', 'theme-01') . '.layout') @section('styles') @parent @endsection @section('content')
| {{ __('Product Name') }} | {{ __('Details') }} | {{ __('Unit Price') }} | {{ __('Sub Total') }} | |
|---|---|---|---|---|
|
{{ __('Estimated shipping time') }}: {{ $product['item']->ship }} @endif |
@if (!empty($product['size']))
{{ __('Size') }}:
{{ $product['item']['measure'] }}{{ str_replace('-', ' ', $product['size']) }}
@endif @if (!empty($product['material'])) {{ __('Material') }}: {{ $product['item']['measure'] }}{{ str_replace('-', ' ', $product['material']) }} @endif @if (!empty($product['color']))
{{ __('Color') }}:
@endif
@if (!empty($product['keys']))
@foreach (array_combine(explode(',', $product['keys']), explode('~', $product['values'])) as $key => $value)
{{ App\Models\Attribute::where('input_name', $key)->first()->name }}
:
{{ $value }} @endforeach @endif @if (env('ENABLE_CUSTOM_PRODUCT') || env('ENABLE_CUSTOM_PRODUCT_NUMBER')) @if (!empty($product['customizable_name'])) {{ __('Custom Name') }}: {{ $product['customizable_name'] }} @endif @endif @if (env('ENABLE_CUSTOM_PRODUCT')) @if (!empty($product['customizable_gallery']))
{{ __('Photo') }}:
@endif
@if (!empty($product['customizable_logo']))
{{ __('Logo') }}:
@endif
@endif
@if (env('ENABLE_CUSTOM_PRODUCT_NUMBER'))
@if (!empty($product['customizable_number']))
{{ __('Custom Number') }}:
{{ $product['customizable_number'] }} @endif @endif |
{{ App\Models\Product::convertPrice($product['item']['price']) }} {{ App\Models\Product::signFirstPrice($product['item']['price']) }} @if ($product['item']['type'] == 'Physical')
|
{{ App\Models\Product::convertPrice($product['price']) }} |
{{ __('Total MRP') }}
{{ Session::has('cart') ? App\Models\Product::convertPrice($totalPrice) : '0.00' }}
{{ __('Tax') }}
{{ $tx }}%
{{ __('Discount') }}
{{ App\Models\Product::convertPrice(0) }}
{{ __('Total') }}
{{ Session::has('cart') ? App\Models\Product::convertPrice($mainTotal) : '0.00' }}
{{ Session::has('cart') ? App\Models\Product::signFirstPrice($mainTotal) : '0.00' }}
{{ __('Methods and prices displayed for your convenience.') }}
@endif @if ($gs->is_aex && config('features.aex_shipping'))