@extends('layouts.bootstrap') @section('title', 'Merge Products') @section('header')

Merge Products

Back to Products Merge History
@endsection @section('content')
@if(session('error')) @endif
Select Products to Merge
Select 2 or more products to merge into a single consolidated product
@csrf
0 selected
@forelse($products as $product) @empty @endforelse
Product Name Category Country Price Unit Status
{{ $product->name }} @if($product->description)
{{ Str::limit($product->description, 50) }} @endif
@if($product->category) {{ $product->category->name }} @if($product->subcategory)
{{ $product->subcategory->name }} @endif @else Not set @endif
{{ $product->country_of_origin ?? 'Not set' }} @if($product->price) ৳{{ number_format($product->price, 2) }} @else Not set @endif {{ $product->measurement_unit ?? 'Not set' }} @if($product->isComplete()) Complete @else Incomplete @endif

No products found matching your criteria.

@if($products->hasPages())
Showing {{ $products->firstItem() ?? 0 }} to {{ $products->lastItem() ?? 0 }} of {{ $products->total() }} products
per page
@endif
@push('scripts') @endpush @push('styles') @endpush @endsection