@extends('admin.admin')
@section('title')
Whole Sale Product List
@endsection
@section('content')
| SL |
Image |
Name |
Category |
Brand |
Price |
Action |
@foreach ($products as $sl => $product)
| {{ $sl + 1 }} |
@if (!empty($product->image))
@else
@endif
|
{{ $product->name }} |
{{ $product?->category?->name ?? '' }} |
{{ $product?->brand?->name ?? '' }} |
{{ $product->price }} TK |
|
@endforeach
@endsection