@extends('layouts.dashboard') @section('title', 'Sales Order CSV Upload') @section('page-title', 'Sales Order CSV Upload') @section('breadcrumb') @endsection @section('content')
Upload Sales Order CSV
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
The CSV should contain the following columns: so_no, item_name, category, hsn, qty, rate
CSV Format Instructions

Your CSV file should have the following columns:

Column Name Description
so_no Sales Order Number
item_name Item/Product Name
category Product Category
hsn HSN Code
qty Quantity
rate Rate per unit
Note: The first row of your CSV file should contain the column headers as listed above.
@endsection