@extends('admin.layout') @section('content')
{{ __('Products') }}
@includeIf('admin.partials.languages')
{{ __('Add Product') }}
@if (count($products) == 0)

{{ __('NO PRODUCT FOUND') . '!' }}

@else
@if ($themeInfo->theme_version == 2) @endif @foreach ($products as $product) @if ($themeInfo->theme_version == 2) @endif @endforeach
{{ __('Featured Image') }} {{ __('Title') }} {{ __('Category') }} {{ __('Product Type') }} @php $currencyText = $currencyInfo->base_currency_text; @endphp {{ __('Price') . ' (' . $currencyText . ')' }} {{ __('Featured') }}{{ __('Actions') }}
product image {{ strlen($product->title) > 50 ? mb_substr($product->title, 0, 50, 'UTF-8') . '...' : $product->title }} {{ $product->categoryName }} {{ $product->product_type }} {{ $product->current_price }}
@csrf
@csrf
@endif
@endsection