@extends('layouts.backend') @section('title', $title) @section('content')
@foreach($productCategory as $index => $cate)
@foreach ($products as $index2 => $product) @if(strcmp($product->status, STATUS_ACTIVE) == 0) @endif @endforeach
@endforeach

รายการสินค้า

# สินค้า จำนวน ส่วนลด Subtotal ส่วนลด Total

@{{ p.name }}

Unit Price : @{{ p.price_text }}

%
B
@{{ p.subtotal_text }} @{{ p.discount_text }} @{{ p.total_text }}
Subtotal @{{ subtotal_text }}
ส่วนลดตามรายการ @{{ line_discount_total_text }}
ส่วนลดอาหาร
%
B
@{{ food_discount_text }}
ส่วนลดเครื่องดื่ม
%
B
@{{ drink_discount_text }}
ส่วนลดท้ายบิล
%
B
@{{ bill_discount_text }}
หักแต้มลูกค้า ( @{{ customer_point }} )
รวมส่วนลดทั้งหมด @{{ discount_total_text }}
@{{ service_charge_text }}
@{{ vat_type_text }} @{{ vat_total_text }}
Total @{{ total_text }}

ลูกค้า

{!! HTMLRender::formSelect('customer_id', trans('cashier.searchcustomer'), $customers_select, 0, ['span' => true, 'select2' => true, 'firstrow' => true]) !!}
 

{!! HTMLRender::formText('customer_point', null, trans('customer.point'), ['span' => true, 'readonly' => 'readonly']) !!} {!! HTMLRender::formText('customer_fullname', null, trans('customer.fullname'), ['span' => true]) !!} {!! HTMLRender::formText('customer_taxid', null, trans('customer.taxid'), ['span' => true]) !!} {!! HTMLRender::formText('customer_tel', null, trans('customer.tel'), ['span' => true]) !!} {!! HTMLRender::formText('customer_email', null, trans('customer.email'), ['span' => true]) !!} {!! HTMLRender::formTextArea('customer_address', null, trans('customer.address'), ['span' => true]) !!} {{ csrf_field() }}

VAT

ประเภท

จำนวน

Service Charge %

{!! view('cancelorder.cancelorder')->render() !!} @endsection @section('css') @endsection @section('script') @endsection