@extends('layouts.front') @section('content')
@lang('ID#') | @lang('Product Name') | @lang('Details') |
---|---|---|
{{ $product['item']['id'] }}
|
{{ mb_strlen($product['item']['name'], 'UTF-8') > 50 ? mb_substr($product['item']['name'], 0, 50, 'UTF-8') . '...' : $product['item']['name'] }} |
{{ __('Quantity') }}: {{ $product['qty'] }}
@if (!empty($product['size'])) {{ __('Size') }}: {{ $product['item']['measure'] }}{{ str_replace('-', ' ', $product['size']) }} @endif @if (!empty($product['color']))
{{ __('Color') }}:
@endif
@if (!empty($product['keys']))
@foreach (array_combine(explode(',', $product['keys']), explode(',', $product['values'])) as $key => $value)
{{ ucwords(str_replace('_', ' ', $key)) }} :
{{ $value }} @endforeach @endif |