@extends('layouts.layout-horizontal') @section('title', ' Products') @section('css') @endsection @section('content')
Create Product
Back
@csrf @if(request('from_dropdown')) @endif @include('products._form')
Existing Products {{ count($existingProducts) }}
Check before adding to avoid duplicates
@foreach($existingProducts as $ep) @endforeach
Name HSN Unit
{{ $ep->name }} {{ $ep->hsn ?? '-' }} {{ $ep->unit ?? '-' }}
@endsection @push('scripts') @endpush