@section('title', '- Place your order') @extends('layouts.user-profile', ['withOutAside' => true]) @section('section-body')

Review your orders


{{ method_field('POST') }} {{ csrf_field() }}
@php $totals = 0; @endphp @foreach ($products as $key => $product) @php $totals += $product['price']; @endphp
@if (!session('user'))

@lang('products.need_logged_buy')

@endif

{{ $product['name'] }}

{{ str_limit($product['description'], 200) }}

@if ($product['delivery'] == 1)

@lang('products.note'): @lang('products.info_delivery')

@endif

@lang('products.seller'): $product['user']['id']]) }} class="without_under"> {{ $product['user']['first_name'] }} {{ $product['user']['last_name'] }}

@lang('products.quantity'):


@lang('products.price'): {{ $product['price'] }} eBits

Sub Total: {{ $product['price'] }} eBits

@endforeach

Shipping Address

Total: {{ $totals }} eBits

@endsection @push('js') @endpush