@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')

{{--
إذا كنت لا تملك حساب، قم بتسجيل دخولك الآن
--}}
@if($orders) @if(count($orders->ProductsAddCart) > 0) @foreach($orders->ProductsAddCart as $session_item)
{!! csrf_field() !!}

{{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}}
@endsection