@extends('layouts.app') @section('content')
{!! Form::open(['url' => action('SellController@store'), 'class' => '', 'method' => 'post', 'id' => 'add_sell_form' , 'files' => true]) !!}
Invoice Entry

Entry No:

Date:

Bill No:

Credit Type :

Invoice No:

Selling Type :

{!! Form::select('sale_type', ['P' => 'PAID', 'R' => 'CREDIT'],'R', ['class' => 'form-control', 'style'=>'width:60%']); !!}

Type :

{!! Form::select('account_type', ['CR' => 'CREDITORS', 'DR' => 'DEBTORS'], null, ['class' => 'form-control', 'style'=>'width:60%','placeholder' => 'Select Type' , 'required', 'id' => 'account_type']); !!}

Account Code:

Rep Code:

Store:

VAT Type :

{!! Form::select('vat_type', ['E' => 'E', 'I' => 'I'], 'E', ['class' => 'form-control', 'style'=>'width:60%','placeholder' => 'Select Type' , 'required', 'id' => 'account_type']); !!}

{!! Form::text('search_product', null, ['class' => 'form-control mousetrap', 'id' => 'search_product', 'placeholder' => __('Search Product'), 'autofocus']); !!}
{!! Form::hidden('exit_serial', null, ['id' => 'exit_serial']); !!} {!! Form::hidden('exit_product_id', null, ['id' => 'exit_product_id']); !!}
Item Code Description Qty Unit Rate Discount(%) Amount

@lang( 'Total' ): {!! Form::hidden('final_total', 0 , ['id' => 'grand_total_hidden']); !!}
{!! Form::label('discount_type', __('Discount Type') . ':*' ) !!}
{!! Form::select('discount_type', ['fixed' => __('Fixed'), 'percentage' => __('Percentage')], 'percentage' , ['class' => 'form-control','placeholder' => __('messages.please_select'), 'required', 'data-default' => 'percentage']); !!}
{!! Form::label('discount_amount', __('Discount Amount') . ':*' ) !!}
{!! Form::text('discount_amount', 0, ['class' => 'form-control input_number', 'data-default' => 0]); !!}

@lang( 'Discount Amount' ):(-) 0
{!! Form::label('tax_rate_id', __('Order Tax') . ':*' ) !!}
{!! Form::select('tax_rate_id', $taxes['tax_rates'], null, ['placeholder' => __('Please select'), 'class' => 'form-control', 'data-default'=> 0], $taxes['attributes']); !!}
@lang( 'Order Tax' ):(+) 0
@lang('Total Payable'): 0

Add Payment

@include('sale.partial.payment_row_form', ['row_index' => 0])
Balance: 0.00

{!! Form::close() !!}
@endsection @section('javascript') @endsection