@extends('front.index') @section('meta_title'){{$user->name}} @endsection @section('meta_des'){{$user->name}} @endsection @section('meta_key'){{$user->name}} @endsection @section('content') {{trans('front.home')}} {{trans('front.home')}} {{trans('front.myorders')}} @include('front.profile.nav-profile') @if($orders) @if(count($orders->ProductsAddCart) > 0) @foreach($orders->ProductsAddCart as $session_item) {!! csrf_field() !!} {{$session_item->product->name}} {{$session_item['price']}} {{$session_item['price_after_discount']}} {{trans('front.qty')}} {{trans('front.total_price')}} {{$session_item['quantity']*$session_item['price']}} @endforeach @else {{trans('cart.empty')}} @endif @endif @endsection