@extends('front.layouts.master') @section('title') cart @endsection @section('css') @endsection @section('content')

Shopping Cart

@foreach (get_card() as $row) @endforeach
Image Product Name Model Quantity discount Price Total
Aspire Ultrabook Laptop {{ app()->getLocale() === 'ar' ? $row->model->name_ar : $row->model->name_en }}
{{$row->model->SKU}} ${{ $row->model->discount_price }} {{ $row->price * $row->qty }}
@endsection @section('js') @endsection