{{__('admin.Products')}}
{{__('admin.Add New')}}
@endsection
| {{__('admin.SN')}} | {{__('admin.Name')}} | {{__('admin.Price')}} | {{__('admin.Photo')}} | {{__('admin.Type')}} | {{__('admin.Status')}} | {{__('admin.Action')}} |
|---|---|---|---|---|---|---|
| {{ ++$index }} | {{ $product->short_name }} | {{ $setting->currency_icon }}{{ $product->price }} | |
@if ($product->new_product == 1) {{__('admin.New')}} @endif @if ($product->is_featured == 1) {{__('admin.Featured')}} @endif @if ($product->is_top == 1) {{__('admin.Top')}} @endif @if ($product->is_best == 1) {{__('admin.Best')}} @endif | @if($product->status == 1) @else @endif |
@php
$existOrder = $orderProducts->where('product_id',$product->id)->count();
@endphp
@if ($existOrder == 0)
@else
@endif
|