@extends('layouts.main.master') @section('title') Giỏ hàng của bạn @endsection @section('description') Bún đậu mắm tôm Lynh @endsection @section('image') {{url(''.$banner[0]->image)}} @endsection @section('css') @endsection @section('content') @php $total = 0; $qty = 0 ; @endphp @foreach((array) session('cart') as $id => $details) @php if($details['status_variant'] == 1){ $total += $details['price'] * $details['quantity'] ; }else{ if ($details['discount'] > 0) { $total += $details['discount'] * $details['quantity'] ; }else{ $total += $details['price'] * $details['quantity'] ; } } $qty += $details['quantity'] ; @endphp @endforeach

Giỏ hàng

@if (count($cartcontent) > 0)
@foreach ($cartcontent as $item)
undefined

{{$item['name']}} @if ($item['status_variant'] == 1) {{$item['variant']}} @endif

@if ($item['status_variant'] == 1) {{number_format($item['price'])}}₫ @else @if ($item['discount'] > 0) {{ number_format($item['discount']) }}₫ @else {{ number_format($item['price']) }}₫ @endif @endif
@endforeach
Tổng tiền
{{number_format($total)}}₫
Đặt hàng
Xoá tất cả
@else
@endif
@endsection