@extends('front.index') @section('meta_title'){{trans('front.carts')}} @endsection @section('meta_des'){{trans('front.carts')}} @endsection @section('meta_key'){{trans('front.carts')}} @endsection @section('content') {{trans('front.home')}} {{trans('front.carts')}} {{-- إذا كنت لا تملك حساب، قم بتسجيل دخولك الآن --}} @if($orders) @if(count($orders->ProductsAddCart) > 0) @foreach($orders->ProductsAddCart as $session_item) {!! csrf_field() !!} {{$session_item->product->name}} @if($session_item->item_color) -{{$session_item->item_color->name}} @else @endif @if($session_item->item_size) -{{$session_item->item_size->name}} @else @endif {{$session_item['price']}} {{$session_item['price_after_discount']}} {{trans('front.DeletedProductCart')}} {{trans('front.qty')}} {{trans('front.TotlaPrice')}} {{$session_item['quantity']*$session_item['price']}} @endforeach @else {{trans('cart.empty')}} @endif @endif @lang('front.taotalCart') @lang('front.taotalsCart') {{$total}} @lang('front.Proceedtocheckout') @endsection