@extends('admin.layouts.master') @section('content')
{{ trans('app.notice') }} {{ trans('messages.import_ignored') }}

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

@foreach ($failed_rows as $row) @endforeach
{{ trans('app.image') }} {{ trans('app.name') }} {{ trans('app.description') }} {{ trans('app.listing') }} {{ trans('app.category') }} {{ trans('app.reason') }}
{{ $row['data']['name'] }}
{{ trans('app.slug') }}: {{ $row['data']['slug'] ?? Str::slug($row['data']['name'], '-') }}
{!! $row['data']['description'] !!}
{{ trans('app.gtin') }}:
{{ $row['data']['gtin_type'] . ' ' . $row['data']['gtin'] }}
@if ($row['data']['mpn'])
{{ trans('app.part_number') }}:
{{ $row['data']['mpn'] }}
@endif @if ($row['data']['manufacturer'])
{{ trans('app.manufacturer') }}:
{{ $row['data']['manufacturer'] }}
@endif @if ($row['data']['brand'])
{{ trans('app.brand') }}:
{{ $row['data']['brand'] }}
@endif @if ($row['data']['model_number'])
{{ trans('app.model_number') }}:
{{ $row['data']['model_number'] }}
@endif @if ($row['data']['origin_country'])
{{ trans('app.origin') }}:
{{ $row['data']['origin_country'] }}
@endif @if ($row['data']['minimum_price'])
{{ trans('app.min_price') }}:
{{ get_formated_currency($row['data']['minimum_price'], 2, config('system_settings.currency.id')) }}
@endif @if ($row['data']['maximum_price'])
{{ trans('app.max_price') }}:
{{ get_formated_currency($row['data']['maximum_price'], 2, config('system_settings.currency.id')) }}
@endif
{{ $row['data']['categories'] }} {{ $row['reason'] }}
@endsection