@extends('admin.layouts.app') @section('title', 'Products') @section('content')

Products

{{ $products->total() }} total products managed.

  • All Categories
Inventory Overview
SAMPLE.XLSX
@csrf
@if(session('success'))

{{ session('success') }}

@endif @if(session('error'))

{{ session('error') }}

@endif
@forelse($products as $product) @empty @endforelse
Product Category Price (SP) Variations Status Actions
@if($product->images->isNotEmpty()) {{ $product->name }} @else
@endif

{{ $product->name }}

ID: #{{ $product->id }}

{{ $product->category->name }}

@if($product->subcategory)

{{ $product->subcategory->name }}

@endif

₹{{ number_format($product->sp, 2) }}

₹{{ number_format($product->mrp, 2) }}

{{ $product->variations_count }}
@csrf @method('DELETE')

No products discovered

CREATE YOUR FIRST PRODUCT
{{ $products->links() }}
@include('admin.products.partials.modals') @endsection @push('scripts') @endpush