@extends('seller/layout') @section('title') {{ labels('admin_labels.products', 'Products') }} @endsection @section('content')
@php use App\Models\Seller; use Illuminate\Support\Facades\Auth; use App\Services\StoreService; $user_id = Auth::user()->id; $seller_id = Seller::where('user_id', $user_id)->value('id'); $store_id = app(StoreService::class)->getStoreId(); $deliverable_type = fetchDetails( \App\Models\SellerStore::class, ['seller_id' => $seller_id, 'store_id' => $store_id], ['deliverable_type', 'deliverable_zones'], ); $deliverable_type = !$deliverable_type->isEmpty() ? $deliverable_type[0] : []; @endphp @csrf
{{ labels('admin_labels.choose_seller', 'Select Seller And Product') }}
{{ labels('admin_labels.choose_product_type', 'Choose Product Type') }}*
{{ labels('admin_labels.select_category', 'Select Product Category') }}*
{{ labels('admin_labels.product_information', 'Product Information') }}
@foreach ($languages as $lang) @if ($lang->code !== 'en')
@endif @endforeach
{{-- custom fields --}} @include('components.product.custom_fields', [ 'customFields' => $customFields, ])
{{ labels('admin_labels.product_tax', 'Product Tax') }}
{{ labels('admin_labels.product_quantity_and_other', 'Product Quantity & Other') }}
{{ labels('admin_labels.delivery_and_shipping_setting', 'Delivery And Shipping Setting') }}
{{ labels('admin_labels.products_additional_info', 'Product Additional Info') }}
{{-- --}}
{{--
--}}
{{ labels('admin_labels.product_media', 'Product Media') }}( {{ labels('admin_labels.images', 'Images') }} )

Choose image for product.

(Recommended Size : 180 x 180 pixels)

Choose images for product.

(Recommended Size : 180 x 180 pixels)

{{ labels('admin_labels.product_media', 'Product Media') }} ( {{ labels('admin_labels.videos', 'Videos') }} )
{{ labels('admin_labels.product_description', 'Product Description') }}
@endsection