@extends('layout.index') @section('content')
商品列表
@foreach($goods as $k=>$v) @endforeach
商品ID 商品名 分类 价格 商品简介 库存 操作
{{$v['id']}} {{$v['title']}} {{$v['name']}} {{$v['price']}} {{$v['desrc']}} {{$v['kucun']}}        
{!!$goods->appends($request)->render()!!}
@endsection @section('myjs') @endsection