@extends('admin.layouts.master') @section('content')

{{ trans('app.preview') }} ({{ trans('app.total_number_of_rows', ['value' => count($rows)]) }})

@can('create', \App\Models\Product::class) {{ trans('app.bulk_import') }} @endcan
@foreach ($rows as $row) @endforeach
{{ trans('app.image') }} {{ trans('app.name') }} {{ trans('app.description') }} {{ trans('app.listing') }} {{ trans('app.category') }} {{ trans('app.tags') }} {{ trans('app.requires_shipping') }} {{ trans('app.active') }}
{{ $row['name'] }}
{{ trans('app.slug') }}: {{ $row['slug'] ?? Str::slug($row['name'], '-') }}
{!! $row['description'] !!}
{{ trans('app.gtin') }}:
{{ $row['gtin_type'] . ' ' . $row['gtin'] }}
@if ($row['mpn'])
{{ trans('app.part_number') }}:
{{ $row['mpn'] }}
@endif @if ($row['manufacturer'])
{{ trans('app.manufacturer') }}:
{{ $row['manufacturer'] }}
@endif @if ($row['brand'])
{{ trans('app.brand') }}:
{{ $row['brand'] }}
@endif @if ($row['model_number'])
{{ trans('app.model_number') }}:
{{ $row['model_number'] }}
@endif @if ($row['origin_country'])
{{ trans('app.origin') }}:
{{ $row['origin_country'] }}
@endif @if ($row['minimum_price'])
{{ trans('app.min_price') }}:
{{ get_formated_currency($row['minimum_price'], 2, config('system_settings.currency.id')) }}
@endif @if ($row['maximum_price'])
{{ trans('app.max_price') }}:
{{ get_formated_currency($row['maximum_price'], 2, config('system_settings.currency.id')) }}
@endif
{{ $row['categories'] }} {{ $row['tags'] }}
@endsection