@extends('layouts.business.master') @section('title') {{ __('Pos Sale') }} @endsection @php $modules = product_setting()->modules ?? []; @endphp @push('css') @endpush @section('main_content')
@csrf
@if ($modules['allow_product_discount'] ?? false) @endif @include('business::sales.cart-list')
{{ __('Image') }} {{ __('Items') }} {{ __('Code') }} {{ __('Batch') }} {{ __('Unit') }} {{ __('Sale Price') }}{{ __('Discount') }}{{ __('Vat %') }} {{ __('Vat Value') }} {{ __('Qty') }} {{ __('Sub Total') }} {{ __('Action') }}

{{ __('Receive Amount') }}
{{ __('Change Amount') }}
{{ __('Due Amount') }}
{{ __('Payment Type') }}
@include('business::component.payment_type', ['context' => 'sale', 'payment_types' => $payment_types])
{{ __('Note') }}
{{ __('Sub Total') }}
{{ currency_format(0, currency: business_currency()) }}
{{ get_business_option('business-settings')['vat_name'] ?? 'Vat' }}
{{ currency_format(0, currency: business_currency()) }}
{{ get_business_option('business-settings')['vat_name'] ?? '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('sales.create')
@endusercan
@include('business::sales.product-list')
@php $rounding_amount_option = sale_rounding(); @endphp @endsection @push('modal') @include('business::sales.calculator') @include('business::sales.category-search') @include('business::sales.brand-search') @include('business::sales.customer-create') @include('business::sales.stock-list') @endpush @push('js') @endpush