@extends('admin.admin') @section('title') Whole Sale Product List @endsection @section('content')

All Whole Sale Products

@foreach ($products as $sl => $product) @endforeach
SL Image Name Category Brand Price Action
{{ $sl + 1 }} @if (!empty($product->image)) @else @endif {{ $product->name }} {{ $product?->category?->name ?? '' }} {{ $product?->brand?->name ?? '' }} {{ $product->price }} TK
@endsection