@extends('layout.store') @section('title','购物车') @section('myCss') @endsection @section('content')

购物车

购物车
@foreach($goods as $k=>$v) @endforeach {{csrf_field()}}
全选 商品图 商品 单价 数量 小计 操作
{{$v['title']}} {{$v['title']}} {{$v['price']}}
- +
{{$v['price'] * $v['num']}}

×

购物车内还没有商品,赶紧去选购吧~

返回商城首页
@endsection @section('myJs') @endsection