@extends('layouts.front') @section('title') @lang('Shipping Details') @endsection @section('scripts') @endsection @section('content')
@if($cartItem->options->has('photo'))
@if($cartItem->options->photo)
@php
$image_url = \App\Helpers\Helper::check_image_avatar($cartItem->options->photo, 75);
@endphp
|
{{$cartItem->name}}
@if(is_array($cartItem->options->spec) && count($cartItem->options->spec))
@foreach($cartItem->options->spec as $key => $spec)
{{$spec['name']}} : {{$spec['value']}}
{{-- @if(!$loop->last) @endif --}}
@endforeach
@endif
Qty : {{$cartItem->qty}}
|
{{currency_format($cartItem->total)}} |