@extends('layouts.business.master') @section('title') {{ __('Sales List') }} @endsection @section('main_content')

{{ __('Inventory Sales') }}

@csrf
{{ __('Select Product') }}
@include('business::sales.cart-list')
{{ __('Image') }} {{ __('Items') }} {{ __('Code') }} {{ __('Batch') }} {{ __('Unit') }} {{ __('Sale Price') }} {{ __('Qty') }} {{ __('Sub Total') }} {{ __('Action') }}
{{ __('Receive Amount') }}
{{ __('Change Amount') }}
{{ __('Due Amount') }}
{{ __('Payment Type') }}
{{ __('Note') }}
{{ __('Sub Total') }}
{{ currency_format(0, currency: business_currency()) }}
{{ __('Vat') }}
{{ __('Discount') }}
{{ __('Shipping Charge') }}
{{ __('Total Amount') }}
{{ currency_format(0, currency: business_currency()) }}
{{ __('Rounding(+/-)') }}
{{ currency_format(0, currency: business_currency()) }}
{{ __('Payable Amount') }}
{{ currency_format(0, currency: business_currency()) }}
@usercan('inventory.create') @endusercan
@php $currency = business_currency(); $rounding_amount_option = sale_rounding(); @endphp {{-- Hidden input fields to store currency details --}} @endsection @push('modal') @include('business::sales.calculator') @include('business::sales.customer-create') @endpush @push('js') @endpush