@extends('backend.app') @section('content')

Product List

@can('product.create') Add Product @endcan Export
@foreach($items as $item) @endforeach
Action
Product Sku Image Type Category Brand Purchase Price Sell Price Stock Recommended
copy @can('product.edit') @endcan @can('product.delete') @endcan {{$item->name}} {{$item->sku}}
friend
{{$item->type}} {{ $item->category?$item->category->name:''}} {{ $item->brand?$item->brand->name:''}} {{$item->purchase_price}} {{$item->sell_price}} {{ $item->stocks->sum('quantity')}} {{$item->is_recommended=='1'?'yes':'no'}}

{!! urldecode(str_replace("/?","?",$items->appends(Request::all())->render())) !!}

@endsection @push('js') @endpush