@extends('backend.layouts.master') @section('page-title', 'POS') @push('css') @endpush @section('invoice')
@csrf

{{-- Discount --}}
Product Quantity Rate Total Action
Grand Total
Discount
Pay Now
@include('backend.pages.invoice.payment-modal')

Products

{{-- @dd($products) --}} @forelse($products as $product) @php $stock_qty = product_stock($product); @endphp @if ($stock_qty >= 1)
product
{{ $product->name }}
{{ $product->selling_price }} {{ empty(get_setting('com_currency')) ? : get_setting('com_currency') }}
Stock : {{ $stock_qty }}
@endif @empty
@endforelse
@if (env('APP_SERVICE') == 'yes')

Services

{{-- @dd($products) --}} @forelse($products as $product) {{-- @php $stock_qty = product_stock($product); @endphp --}} @if ($product->is_service == 1)
product
{{ $product->name }}
{{ $product->selling_price }} {{ empty(get_setting('com_currency')) ? : get_setting('com_currency') }}
@endif @empty
@endforelse
@endif
{{-- Add Modal --}}
@csrf
@endsection @push('js') @endpush