@extends('layouts.client') @section('title') {{$title}} @endsection @section('content-clients')
0 || count($products) > 0) style="grid-template-columns: 1.4fr 0.6fr; gap:15px;" @else style="grid-template-columns: 1fr 0fr; gap:15px;" @endif >
{{-- SẢN PHẨM TRONG ĐƠN --}}
@if(!Auth::check())
Sản phẩm trong giỏ hàng ({{count(Cart::content())}})
@if(Cart::count() > 0) @else Tiếp Tục Mua Sắm @endif
@php $num = 0 @endphp @foreach(Cart::content()->sortByDesc(function($item) { return $item->options->added_at; }) as $item) @php $num++; @endphp
{{$num}} {{ $item->options->anh }}
{{ $item->name }}
Danh mục: {{$item->options->ten_danh_muc}} | NSX: {{$item->options->ten_NSX}}
{{ number_format($item->price*$item->qty, 0, ',', '.') }} đ
Xóa
@endforeach
@else
Sản phẩm trong giỏ hàng ({{count($products)}})
@if(count($products) > 0) @else Tiếp Tục Mua Sắm @endif
@php $num = 0 @endphp @foreach($products as $item) @php $num++; @endphp
{{ number_format($item->price*$item->qty, 0, ',', '.') }} đ
Xóa
@endforeach
@endif
{{-- Gợi ý sản phẩm khác --}}
@if(Cart::count() > 0 || count($products) > 0)
{{-- THÔNG TIN ĐƠN HÀNG --}}
Thông tin giỏ hàng
Tổng tiền
@if(!Auth::check()) {{Cart::total()}}đ @else {{number_format($totalPrice, 0, ',', '.')}}đ @endif
{{--
Tổng khuyến mãi
--}}
Cần thanh toán
@if(!Auth::check()) {{Cart::total()}}đ @else {{number_format($totalPrice, 0, ',', '.')}}đ @endif
Xác Nhận Đơn Hàng
Bằng việc tiến hành đặt mua hàng, bạn đồng ý với Điều khoản dịch vụChính sách xử lý dữ liệu cá nhân của Gia Dụng Văn Hậu.
@endif
@endsection @section('stylesheet') @endsection