@extends('admin.layouts.master') @section('title', 'List of Products') @section('content')

Products List

Filter Prodcuts
Products List
@foreach ($products as $key => $product) @endforeach
# Image Name Category Cost Price Sale Price QrCode Quantity Featured Weight Status Actions
{{++$key}}
{{ $product->name }} {{ optional($product->category)->name }} {{ $product->cost_price ?? 'NULL' }} {{ $product->unit_price }} {{ $product->qrcode }} {{ $product->quantity }} @if ($product->is_featured == 1) Featured @else UnFeatured @endif {{ $product->weight }} {{ $product->unit->name }} @if ($product->status == 1) Published @else Draft @endif
@endsection @section('js') {{-- --}} @endsection