@extends('layouts.back-end.app') @section('title', translate('product_List')) @section('content')
@if($type == 'in_house')
{{ translate('in_House_Product_List') }}
@elseif($type == 'seller')
{{ translate('vendor_Product_List') }}
@endif
{{ $products->total() }}
| {{ translate('SL') }} | {{ translate('product Name') }} | {{ translate('product Type') }} | {{ translate('unit_price') }} | {{ translate('show_as_featured') }} | {{ translate('active_status') }} | {{ translate('action') }} |
|---|---|---|---|---|---|---|
| {{ $products->firstItem()+$key}} |
{{ Str::limit($product['name'], 20) }}
@if($product?->clearanceSale)
{{ translate('Clearance_Sale') }}
@endif
|
{{ translate(str_replace('_',' ',$product['product_type'])) }} | {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product['unit_price']), currencyCode: getCurrencyCode()) }} | @php($productName = str_replace("'",'`',$product['name'])) |