@extends('layouts.admin.app')
@section('title') {{$order_type_name}} Order # {{$order->id}} @stop
@section('style')
@endsection
@section('main')
{{$order->bill_to}} {{$order->bill_address}} {{$order->bill_city}}, {{$order->billing_state->code}} {{$order->bill_zip}} {{$order->ship_to}} {{$order->ship_address}} {{$order->ship_city}}, {{$order->state->code}} {{$order->ship_zip}}
300 E. Tena St.
Jacksonville, TX 75766
Wholesale Invoice
Date
Invoice #
{{\Carbon\Carbon::now()->format('m/d/Y')}}
{{$order->id}}
BILL TO
SHIP TO
P.O. #
TER...
REP
VIA
F.O.B
Bar Code
Private Lab
Label Color
Border Color
Logo Color
@foreach($cart as $item)
Qty.
Item Code
Description
U/M
Price Each
Amount
@endforeach
{{$item['qty']}}
{{$item['options']['sku']}}
{{$item['name']}}
{{$item['price']}}
{{$item['subtotal']}}
TOTAL
Phone
Fax #
E-mail
Web Site
(903) 284-6215
(903) 284-6223
{{Auth::user()->email}}
www.gourmetgardens.com
SKU | qty | Description | Price each | Amount |
---|---|---|---|---|
{{$item['options']['sku']}} | {{$item['qty']}} | {{$item['name']}} | $ {{$item['price']}} | $ {{$item['subtotal']}} |
Items: {{$totalItems}}
Subtotal: ${{$order->total}}
You will be contacted about the final shipping cost.
Carrier | {!! Form::select('shipper_id', $shipper , $order->shipper_id, ['class'=>'form-control']) !!} |
Shipping Fee |
{!! Form::number('shipping_fee' , $order->shipping_fee, ['class'=>'form-control','placeholder'=>'Shipping Fee','step'=>'0.01', $order->transaction_id? 'disabled':'']) !!}
|
Accessorial Charge Type | {!! Form::select('accessorial_charge_type', $accessorial_charges , $order->accessorial_charge_type, ['class'=>'form-control']) !!} |
Accessorial Charge Amount | {!! \AppHelper::instance()->moneyFormat($order->accessorial_charge_amount) !!} |
Special Notes | {!! Form::textarea('special_notes' , $order->special_notes, ['class'=>'form-control','placeholder'=>'Special Notes','rows'=>'3']) !!} |
{!! Form::submit('Save Shipping Info', ['class'=>'form-control btn-warning']) !!} |
Discount Type | {!! Form::select('discount_type', ['1'=>'(%) Percentage','2'=>'($) Fixed Amount'] , $order->discount_type, ['class'=>'form-control','placeholder'=>'Select Discount Type', $order->transaction_id? 'disabled':'']) !!} @if ($errors->has('discount_type')) {{ $errors->first('discount_type') }} @endif |
Discount Amount | {!! Form::number('discount_amount' , $order->discount_amount, ['class'=>'form-control','placeholder'=>'Discount Amount','step'=>'0.01', $order->transaction_id? 'disabled':'']) !!} @if ($errors->has('discount_amount')) {{ $errors->first('discount_amount') }} @endif |
{!! Form::submit('Save Discount', ['class'=>'form-control btn-warning']) !!} | @endif
Extra Charge Type | --}} {{--{!! Form::select('additional_charge_type', ['1'=>'(%) Percentage','2'=>'($) Fixed Amount'] , $order->additional_charge_type, ['class'=>'form-control','placeholder'=>'Select Extra Charge Type', $order->transaction_id? 'disabled':'']) !!}--}} {{--@if ($errors->has('additional_charge_type'))--}} {{----}} {{--{{ $errors->first('additional_charge_type') }}--}} {{----}} {{--@endif--}} {{-- | --}} {{--
Extra Charge Amount | --}} {{----}} {{--{!! Form::number('additional_charge_amount' , $order->additional_charge_amount, ['class'=>'form-control','placeholder'=>'Extra Charge Amount','step'=>'0.01', $order->transaction_id? 'disabled':'']) !!}--}} {{--@if ($errors->has('additional_charge_amount'))--}} {{----}} {{--{{ $errors->first('additional_charge_amount') }}--}} {{----}} {{--@endif--}} {{-- | --}} {{--
{!! Form::submit('Save Extra Charge', ['class'=>'form-control btn-warning']) !!} | --}} {{--@endif--}} {{--
{!! Form::select('coupon_id', $coupons , null, ['class'=>'form-control select2','placeholder'=>'Select Coupon',$order->transaction_id? 'disabled':'']) !!} | |
{!! Form::submit('Activate Coupon', ['class'=>'form-control btn-warning']) !!} | |
{!! Form::submit('Deactivate Coupon', ['class'=>'form-control btn-danger']) !!} | {!! Form::close() !!}
{!! \AppHelper::instance()->moneyFormat($order->final_price ) !!} |
Label Option | {{$order->labelType->name}} |
Label | {{$label_info['name']}} |
Label Option | {{$order->labelType->name}} | Name: | {{$label['customer_name']}} | ||
Label | {{$label['name']}} | @elseLabel | {{$label_info['name']}} | @endifContact 1 | {{$label['contactinfo1']}} |
Font | {{$label['font']}} | Contact 2 | {{$label['contactinfo2']}} |
Label Option | {{$order->labelType->name}} |
Company | {!! Form::text('company', $order->company, ['class'=>'form-control','placeholder'=>'Enter Company']) !!} @if ($errors->has('company')) {{ $errors->first('company') }} @endif | ||
First Name | {!! Form::text('first_name', $order->first_name, ['class'=>'form-control','placeholder'=>'Enter First Name']) !!} @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif | Last Name | {!! Form::text('last_name', $order->last_name, ['class'=>'form-control','placeholder'=>'Enter Last Name']) !!} @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif |
Phone Number | {!! Form::text('phone', $order->phone, ['class'=>'form-control','placeholder'=>'Enter Phone Number']) !!} @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif | {!! Form::text('email', $order->email, ['class'=>'form-control','placeholder'=>'Enter Email']) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif | |
{!! Form::submit('Save Customer Info', ['class'=>'form-control btn-warning']) !!} |
Name | {!! Form::text('ship_to', $order->ship_to, ['class'=>'form-control','placeholder'=>'Enter Name']) !!} @if ($errors->has('ship_to')) {{ $errors->first('ship_to') }} @endif | ||
Address | {!! Form::text('ship_address', $order->ship_address, ['class'=>'form-control','placeholder'=>'Enter Address']) !!} @if ($errors->has('ship_address')) {{ $errors->first('ship_address') }} @endif | ||
City | {!! Form::text('ship_city', $order->ship_city, ['class'=>'form-control','placeholder'=>'Enter Company']) !!} @if ($errors->has('ship_city')) {{ $errors->first('ship_city') }} @endif | ||
State | {!! Form::select('ship_state', $statesShip, $order->ship_state,['class'=>'form-control', 'placeholder'=>'Select State', 'v-model'=>'customer.ship_state']) !!} @if ($errors->has('ship_state')) {{ $errors->first('ship_state') }} @endif | ||
Zip Code | {!! Form::text('ship_zip', $order->ship_zip, ['class'=>'form-control','placeholder'=>'Enter Zip']) !!} @if ($errors->has('ship_zip')) {{ $errors->first('ship_zip') }} @endif | ||
{!! Form::submit('Save Shipping Info', ['class'=>'form-control btn-warning']) !!} |
Name | {!! Form::text('bill_to', $order->bill_to, ['class'=>'form-control','placeholder'=>'Enter Name']) !!} @if ($errors->has('bill_to')) {{ $errors->first('bill_to') }} @endif | ||
Address | {!! Form::text('bill_address', $order->bill_address, ['class'=>'form-control','placeholder'=>'Enter Address']) !!} @if ($errors->has('bill_address')) {{ $errors->first('bill_address') }} @endif | ||
City | {!! Form::text('bill_city', $order->bill_city, ['class'=>'form-control','placeholder'=>'Enter Company']) !!} @if ($errors->has('bill_city')) {{ $errors->first('bill_city') }} @endif | ||
State | {!! Form::select('bill_state', $statesShip, $order->bill_state,['class'=>'form-control', 'placeholder'=>'Select State', 'v-model'=>'customer.ship_state']) !!} @if ($errors->has('bill_state')) {{ $errors->first('bill_state') }} @endif | ||
Zip Code | {!! Form::text('bill_zip', $order->bill_zip, ['class'=>'form-control','placeholder'=>'Enter Zip']) !!} @if ($errors->has('bill_zip')) {{ $errors->first('bill_zip') }} @endif | ||
{!! Form::submit('Save Billing Info', ['class'=>'form-control btn-warning']) !!} |
Card Type | {!! Form::select('card_type', $cards, $order->card_type,['class'=>'form-control', 'placeholder'=>'Select Card Type']) !!} @if ($errors->has('card_type')) {{ $errors->first('card_type') }} @endif |
Name on Card | {!! Form::text('card_name', $order->card_name, ['class'=>'form-control','placeholder'=>'Enter Name']) !!} @if ($errors->has('card_name')) {{ $errors->first('card_name') }} @endif |
Card Number (view) | {!! Form::input('password','card_number', $order->card_number, ['id'=>'card_number','class'=>'form-control','placeholder'=>'Card Number']) !!} @if ($errors->has('card_number')) {{ $errors->first('card_number') }} @endif |
Validation Code (view) | {!! Form::input('password','card_code', $order->card_code, ['id'=>'card_code','class'=>'form-control','placeholder'=>'Validation Code']) !!} @if ($errors->has('card_code')) {{ $errors->first('card_code') }} @endif |
Expiration Month | {!! Form::select('card_month', $months, $order->card_month,['class'=>'form-control', 'placeholder'=>'Select Month']) !!} @if ($errors->has('card_month')) {{ $errors->first('card_month') }} @endif |
Expiration Year | {!! Form::select('card_year', $years, $order->card_year,['class'=>'form-control', 'placeholder'=>'Select Year']) !!} @if ($errors->has('card_year')) {{ $errors->first('card_year') }} @endif |
Transaction Successful |
|
Transaction id: {{$order->transaction_id}} |
|
{!! Form::submit('Save Credit Card Info', ['class'=>'form-control btn-warning']) !!} | |
{!! Form::open(['method'=>'POST','action' => ['AdminOrdersController@chargeCreditCard', $order->id]]) !!} {!! Form::submit('Charge this Credit Card a $'.$order->final_price, ['class'=>'form-control btn-primary']) !!} {!! Form::close() !!} | |
{!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@toInvoice', $order->id]]) !!} {!! Form::submit('Switch to invoice', ['class'=>'form-control btn-info']) !!} {!! Form::close() !!} | |
Card Type | {{$order->card_type}} |
Purchase Order Number | {{$order->id}} |
{!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@toCC', $order->id]]) !!} {!! Form::submit('Switch to credit card', ['class'=>'form-control btn-info']) !!} {!! Form::close() !!} |
{!! Form::textarea('comment' , $order->comment, ['class'=>'form-control','placeholder'=>'Add Notes','rows'=>'3']) !!} | |
{!! Form::submit('Save Notes', ['class'=>'form-control btn-warning']) !!} |