@extends('layouts.back-end.app') @section('title',$seller?->shop->name ?? translate("shop_name_not_found")) @section('content')
{{translate('vendor_details')}}
| {{translate('SL')}} | {{translate('product Name')}} | {{translate('product_Type')}} | {{translate('selling_price')}} | {{translate('featured')}} | {{translate('active_status')}} | {{translate('action')}} |
|---|---|---|---|---|---|---|
| {{$products->firstItem()+$k}} |
{{ substr($product['name'], 0, 20) }}{{ strlen($product['name']) > 20 ? '...' : '' }}
@if($product?->clearanceSale)
{{ translate('Clearance_Sale') }}
@endif
|
{{translate(str_replace('_',' ',$product['product_type']))}} | {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $product['unit_price']))}} | @php($product_name = str_replace("'",'`',$product['name'])) |