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

Product List

@foreach($items as $item) @endforeach
Action
Product Sku Image Type Category Sell Price Stock Visibility Priority Recommended
@can('product.edit') @endcan @can('product.delete') @endcan {{$item->name}} {{$item->sku}}
friend
{{$item->type}} {{ $item->category?$item->category->name:''}} {{$item->sell_price}} {{ $item->stock_quantity ?? 0}} {{$item->status=='1'?'Show':'Hide'}} {{$item->is_recommended=='1'?'yes':'no'}}

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

@endsection @push('js') @endpush