@include('layouts.header') @include('layouts.sidebar')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif
Ph nos: 9665065522 /25 /34


{{ $inward->company_name }}

Inward Inventory Report
Inward No: {{ $inward->inward_no }}
Date: {{ \Carbon\Carbon::parse($inward->created_at)->format('d-m-Y') }}
Warehouse: {{ $inward->warehouse_name }}
Effective Date: @if (!empty($inward->effective_date) && strtotime($inward->effective_date)) {{ \Carbon\Carbon::parse($inward->effective_date)->format('d-m-Y') }} @else N/A @endif
Sub Category : {{ $inward->sub_category_name ?? '-' }}
Brand : {{ $inward->brand_name ?? '-' }}
Category: {{ $inward->category_name }}
Unit: {{ $inward->unit_name }}
HSN Code: {{ $inward->hsn_code }}
PO Number: {{ $inward->po_number }}
Total Quantity: {{ $inward->quantity }} {{ $inward->unit_name }}
Available Rolls: {{ $inward_available }}
Quantity on Hand: {{ $inward->qunatity_on_hand }}
Total Stock: {{ $inward_stock }}
Basic Cost: ₹{{ number_format($inward->basic_cost, 2) }}
Purchase Cost: ₹{{ number_format($inward->purchase_cost, 2) }}
Retail Margin: {{ $inward->retail_profit_margin }}%
Retail Price: ₹{{ number_format($inward->retail_price, 2) }}
Storage Place(Warehouse): {{ $inward->warehouse_name }}
Product Summary
No Product name Design/Variant No No Of Rolls Quantity Per Roll Rate per Unit UOM %GST Amount (₹)
1 {{ $inward->product_name }} {{ $inward->varient_name }} {{ $inward->no_of_rolls }} @php $perRollQty = ($inward->no_of_rolls > 0) ? number_format($inward->quantity / $inward->no_of_rolls, 2) : '0.00'; @endphp {{ $perRollQty }} {{ number_format($inward->purchase_cost, 2) }} {{ $inward->unit_name }} {{ $inward->gst_rate }}% @php $amount = $inward->quantity * $inward->purchase_cost; @endphp ₹{{ number_format($amount, 2) }}
@php $gstRate = $inward->gst_rate; $amount = $inward->quantity * $inward->purchase_cost; $gstAmount = ($amount * $gstRate) / 100; $cgst = $sgst = $igst = 0; if ($gstRate > 0) { $cgst = $sgst = $gstAmount / 2; // Assuming intra-state // If IGST scenario, use below instead: // $igst = $gstAmount; } $totalAmount = $amount + $cgst + $sgst + $igst; @endphp
@if($cgst > 0) @elseif($igst > 0) @endif
Sub Total₹{{ number_format($amount, 2) }}
CGST ({{ $gstRate / 2 }}%)₹{{ number_format($cgst, 2) }}
SGST ({{ $gstRate / 2 }}%)₹{{ number_format($sgst, 2) }}
IGST ({{ $gstRate }}%)₹{{ number_format($igst, 2) }}
Grand Total₹{{ number_format($totalAmount, 2) }}
For {{ $inward->company_name }}


Authorized Signature
@include('layouts.footer')