@extends('admin.master') @section('content')
| SL | Image | Name | Code | Category | Brand | Price | Stock | Colors | Sizes | Status | Action |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} |
@if ($imagePath && file_exists(public_path($imagePath)))
No Image
@endif
|
{{ $value->name }} | {{ $value->product_code }} | {{ $value->category ? $value->category->name : 'N/A' }} | {{ $value->brand ? $value->brand->name : 'N/A' }} |
Regular: {{ $value->regular_price ?? 0 }} Discount: {{ $value->discount_price ?? 0 }} |
{{ $value->stock }} | @forelse($value->colors as $color) {{ $color->colorName }} @empty N/A @endforelse | @forelse($value->sizes as $size) {{ $size->sizeName }} @empty N/A @endforelse | @if ($value->status == 1) Active @else Inactive @endif | Show Edit @if ($value->status == 1) @else @endif |
| No product found | |||||||||||