@extends('client.layouts.master') @section('title') Cart page @endsection @section('content')
@if (session()->has('message'))
{{ session()->get('message') }}
@elseif (session()->has('error'))
{{ session()->get('error') }}
@endif
@csrf @if (Session::get('cart') == true) @php $total = 0; @endphp @foreach (Session::get('cart') as $key => $cart) @php $subtotal = $cart['product_price'] * $cart['product_qty']; $total += $subtotal; @endphp @endforeach @if (Session::get('coupon')) @endif @else @endif @if (Session::get('cart')) @endif
Hình ảnh Tên sản phẩm Giá sản phẩm Số lượng Thành tiền

{{ substr($cart['product_name'], 0, 70) }}...

{{ number_format($cart['product_price'], 0, ',', '.') }}đ

{{ number_format($subtotal, 0, ',', '.') }} đ

Xóa tất cảXóa tất cả sản phẩm
  • Tổng: {{ number_format($total, 0, ',', '.') }} đ
  • @if (Session::get('coupon'))
  • @foreach (Session::get('coupon') as $key => $cou) @if ($cou['coupon_condition'] == 1) Mã giảm : {{ $cou['coupon_number'] }} %

    @php $total_coupon = ($total * $cou['coupon_number']) / 100; echo '

  • Tổng giảm: ' . number_format($total_coupon, 0, ',', '.') . 'đ
  • '; @endphp

  • Tổng đã giảm: {{ number_format($total - $total_coupon, 0, ',', '.') }} đ
  • @elseif ($cou['coupon_condition'] == 2) Mã giảm : {{ number_format($cou['coupon_number'], 0, ',', '.') }} K

    @php $total_coupon = $total - $cou['coupon_number']; @endphp

  • Tổng đã giảm: {{ number_format($total_coupon, 0, ',', '.') }} đ
  • @endif @endforeach @endif
    @php echo 'Làm ơn thêm sản phẩm vào giỏ hàng'; @endphp
    @csrf
    @endsection