profile Pic

BRAZILIAN INVOICING

{{ Form::open(array('method' => 'post', 'files'=>true, 'enctype'=>'multipart/form-data', 'route'=>'storeInvoice', 'id'=>'form-modal-submit', 'class'=>'remove-record-model form_horizontal')) }} {{csrf_field()}}

Sending Status:

{!! Form::label('brazilianInvoice', 'Done', [ 'class' => 'w-80 control-label']) !!} {!! Form::radio('brazilianInvoice', 'Done', false, ['class' => 'Carrier Issue']) !!}
{!! Form::label('brazilianInvoice', 'Pending', [ 'class' => 'w-80 control-label']) !!} {!! Form::radio('brazilianInvoice', 'Pending', false, ['class' => 'Shipper Issue']) !!}
{!! Form::label('brazilianInvoice', 'N/A', [ 'class' => 'w-80 control-label']) !!} {!! Form::radio('brazilianInvoice', 'N/A', false, ['class' => 'CSA Issue']) !!}

Date:

{!! Form::label('brazilianInvoiceDate', ' ', [ 'class' => 'w-100 control-label']) !!} {!! Form::date('brazilianInvoiceDate', date('Y-m-d'), ['class' => 'form-control', 'style' => 'margin-top:-14px', 'min' => '2019-01-01', 'max' => '2080-01-01']) !!}
{!! Form::label('comments', 'Additional Comments', [ 'class' => 'w-100 control-label']) !!} {!! Form::textarea('comments', null, ['class' => 'form-control', 'rows' => 3]) !!}
{!! Form::select('anexo_types_id[]',[''=>'-- Select Required ---']+$select['anexo_types_id'], null, ['class' => 'form-control', 'style'=>'height:40px; width: 171px']) !!}
{{ Form::hidden('loadingType', 'FNC') }}