@extends('admin.admin_master')
@section('admin')
| Sl |
Image |
Name |
Price |
In Stock |
Action |
@foreach ($allData as $key => $item)
| {{ $key+1 }} |
@php
$primaryImage = $item->images->first()->image ?? '/upload/no_image.jpg';
@endphp
|
{{ $item->name }} |
{{ $item->price }} |
@if ($item->product_qty <= 3)
{{ $item->product_qty }}
@else
{{ $item->product_qty }}
@endif
|
|
@endforeach
@endsection