@extends('backend.app') @section('content')
| 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}} |
|
{{$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())) !!}