@extends('layouts.app') @section('title', 'Edit Purchase') @section('content')

Edit Purchase

{{ $purchase->purchase_no }}
← Back
{{-- Validation Errors --}} @if ($errors->any())
Please fix the following errors:
@endif
@csrf @method('PUT') {{-- ========================================================= --}} {{-- PURCHASE INFORMATION --}} {{-- ========================================================= --}}
Purchase Information
{{-- Supplier --}}
{{-- Purchase Date --}}
{{-- Invoice Number --}}
{{-- Invoice Date --}}
{{-- Payment Status --}}
{{-- Notes --}}
{{-- ========================================================= --}} {{-- PURCHASE PRODUCTS --}} {{-- ========================================================= --}}
Purchased Products
@foreach ($purchase->items as $index => $item) {{-- Number --}} {{-- Product --}} {{-- Qty --}} {{-- Free Qty --}} {{-- Purchase Price --}} {{-- MRP --}} {{-- Selling Price --}} {{-- GST --}} {{-- Tax Amount --}} {{-- Line Total --}} {{-- Remove --}} @endforeach
# Product Qty Free Qty Purchase Price MRP Selling Price GST % Tax Amount Line Total Action
{{ $index + 1 }}
{{-- ========================================================= --}} {{-- PURCHASE SUMMARY --}} {{-- ========================================================= --}}
Purchase Summary
{{-- Subtotal --}}
Subtotal 0.00
{{-- Discount --}}
{{-- GST Total --}}
GST Total 0.00

{{-- Grand Total --}}
Grand Total 0.00
{{-- ========================================================= --}} {{-- BUTTONS --}} {{-- ========================================================= --}}
Cancel
{{-- ============================================================= --}} {{-- JAVASCRIPT --}} {{-- ============================================================= --}} @endsection