@extends('admin.layouts.dashboard') @php $title = empty($item) ? 'Add Item' : 'Edit Item'; $button_text = empty($item) ? 'Submit' : 'Update'; @endphp @section('title', $title) @section('content') @if(!empty($item))
@method('put') @else @endif @csrf
@if (Session::has('failure'))
{{ Session::get('failure') }}
@endif

01

General Info.

Setup Basic Product Details

02

Inventory Details

Stock & Pricing Options

03

Options & Variants

Add Option details

04

Product Attribute

Product Specifications

05

Product Media

Add Option Based Product Media

{{--
--}}

Backsplash

gift_wrap) && $item->gift_wrap == 1 ? 'checked' : '' }}> gift_wrap) && $item->gift_wrap == 0 ? 'checked' : '' }}>

Do you want to track inventory for this product?

track_inventory) && $item->track_inventory == 1 ? 'checked' : '' }}> track_inventory) && $item->track_inventory == 0 ? 'checked' : '' }}>

You want to sell this product as?

selling_at) && $item->selling_at == 'shipping' ? 'checked' : '' }}> selling_at) && $item->selling_at == 'pickup' ? 'checked' : '' }}> selling_at) && $item->selling_at == 'both' ? 'checked' : '' }}>

Continue selling when out of stock

continue_selling_when_stock_out) && $item->continue_selling_when_stock_out == 1 ? 'checked' : '' }}> continue_selling_when_stock_out) && $item->continue_selling_when_stock_out == 0 ? 'checked' : '' }}>

Available for Cash on Delivery

cash_on_delivery) && $item->cash_on_delivery == 1 ? 'checked' : '' }}> cash_on_delivery) && $item->cash_on_delivery == 0 ? 'checked' : '' }}>

is_variant) && $item->is_variant == 1 ? 'checked' : '' }} {{ !isset($item->is_variant) ? 'checked' : '' }}> is_variant) && $item->is_variant == 0 ? 'checked' : '' }}>
@if($variants->count() > 0) @foreach($variants as $variant) {{-- --}} @if($item->selling_type === 'buy') @elseif($item->selling_type === 'rent') @endif @endforeach @else {{-- --}} @endif
Color Number Color Name QTY SKU Image
{{ $variant->color ?? '' }}   
@if($variant->image) Uploaded Image @endif
  
{{--

Select Default Product Variant

--}}
Attributes

Weight*

@if(empty($item))

Images *

Image Disclaimer: File type must be a .jpg, .gif or .png smaller than 2MB and at least 800x1067 in 3:4 aspect ratio

@else

Image

Image1 / Video

Image2 / Video

Image3 / Video

@if(!empty($item->image))
@if($ext == "mp4") your image @else your image @endif
@else
your image
@endif @if(!empty($item->image1))
@if($ext == "mp4") your image @else your image @endif
@else
your image
@endif @if(!empty($item->image2))
@if($ext == "mp4") your image @else your image @endif
@else
your image
@endif @if(!empty($item->image3))
@if($ext == "mp4") your image @else your image @endif
@else
your image
@endif
@endif

Video

Product Published

Product Published From

PREVIOUS
@endsection