@extends('layouts.app') @section('style') @endsection @section('content') @php // Get default tax rate from database $defaultTax = \App\Models\Tax::where('is_default', true)->first(); $defaultTaxRate = $defaultTax ? $defaultTax->rate : 16.00; @endphp
@if($errors->any())
Please fix the following errors:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
1
Add Items
2
Supplier & Payment
3
Review & Complete
@csrf

Purchase Items

Add products to your purchase order. These will be added to inventory when the purchase is completed.
Product
Please select a product
Please enter a valid quantity
KES
Please enter a valid price
Check this if you need to add service items that won't be added to inventory.
Order Summary
Subtotal: KES 0.00
Tax: KES 0.00
Grand Total: KES 0.00

Supplier & Payment Details

Auto-generated
KES
Enter amount paid now
Only product items will be added to stock

Review & Complete Purchase

Please review all details before completing the purchase order.
Order Items
Type Description Qty Unit Price Tax Total
Subtotal: KES 0.00
Tax: KES 0.00
Grand Total: KES 0.00
Supplier Details

Supplier: Not selected

Purchase Date: {{ date('Y-m-d') }}

Reference: N/A

Delivery Date: N/A

Payment Details

Status: Pending

Method: N/A

Amount Paid: KES 0.00

Balance Due: KES 0.00

Order Summary
Order Status: Pending
Add to Stock: Yes
Credit Purchase: No
Click "Complete Purchase" to create the purchase order.
@endsection @section('script') @endsection