@extends('user.layout') @section('content') @php $type = request()->input('type'); @endphp
Add Item
Back
@csrf

@csrf {{-- START: Featured Image --}}
...

{{-- END: Featured Image --}} {{-- slider images / --}}
{{-- slider images / --}} @if ($type == 'physical')

{{ 'This stock will be checked, only if the item has no variation' }}

@endif @if ($type == 'digital')


Only zip file is allowed.

@endif
@if ($type == 'physical')

@endif

@foreach ($languages as $language)
@php $categories = App\Models\User\UserItemCategory::where('language_id', $language->id) ->where('user_id', Auth::guard('web')->user()->id) ->where('status', 1) ->orderBy('name', 'asc') ->get(); @endphp
@php $currLang = $language; @endphp @foreach ($languages as $lang) @continue($lang->id == $currLang->id)
@endforeach
@endforeach
@endsection @section('scripts') @if ($type == 'digital') @endif @php $test = $languages->pluck('code')->toArray(); // dump($test); @endphp @endsection