@extends('admin.layouts.master') @section('content')
{{ trans('app.image') }} | {{ trans('app.title') }} | {{ trans('app.condition') }} | {{ trans('app.quantity') }} | {{ trans('app.price') }} | {{ trans('app.variants') }} | {{ trans('app.key_features') }} | {{ trans('app.listing') }} | {{ trans('app.seo') }} |
---|---|---|---|---|---|---|---|---|
|
{{ $row['title'] }} | {{ $row['condition'] }} @if($row['condition_note']) {{ $row['condition_note'] }} @endif | {{ $row['stock_quantity'] }} |
@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
|
@php
$key_features = array_filter($row, function($key) {
return strpos($key, 'key_feature_') === 0;
}, ARRAY_FILTER_USE_KEY);
@endphp
|
|
|