@extends('admin.layouts.master') @section('content')
{{ trans('app.image') }} | {{ trans('app.title') }} | {{ trans('app.gtin') }} | {{ trans('app.price') }} | {{ trans('app.variants') }} | {{ trans('app.listing') }} | {{ trans('app.seo') }} |
---|---|---|---|---|---|---|
{{ $row['title'] }} | {{ $row['gtin_type'] . ' ' . $row['gtin'] }} |
@if ($row['offer_price'])
({{ $row['offer_starts'] . ' - ' . $row['offer_ends'] }}) |
@php
$variants = array_filter(
$row,
function ($key) {
return strpos($key, 'option_name_') === 0;
},
ARRAY_FILTER_USE_KEY,
);
@endphp
|
|
|