@extends('layouts.admin.app') @section('title') {{$order_type_name}} Order # {{$order->id}} @stop @section('style') @endsection @section('main')
BILL TO

{{$order->bill_to}}

{{$order->bill_address}}

{{$order->bill_city}}, {{$order->billing_state->code}} {{$order->bill_zip}}

SHIP TO

{{$order->ship_to}}

{{$order->ship_address}}

{{$order->ship_city}}, {{$order->state->code}} {{$order->ship_zip}}

P.O. # TER... REP VIA F.O.B Bar Code Private Lab Label Color Border Color Logo Color
@foreach($cart as $item) @endforeach
Qty. Item Code Description U/M Price Each Amount
{{$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
{{--MENU BAR--}}
@if(Auth::user()->role_id == 2 || Auth::user()->role_id == 7) @endif BOL @if(Auth::user()->role_id != 4) @endif Excel
{{--CART--}}

Shopping Cart

@if(!$order->transaction_id) @if(Auth::user()->role_id != 4) Edit Cart @endif @endif
@foreach($cart as $item) @endforeach
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.

{{--SHIPPING--}}

Shipping

{!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@shippingUpdate', $order->id]]) !!} @if($order->accessorial_charge_type !=0) @endif {!! Form::close() !!}
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--}}

Discount: @if($order->discount_amount != '') @if($order->discount_type == 1) {!! \AppHelper::instance()->moneyFormat(( $order->total) * ($order->discount_amount /100)) !!} @else {!! \AppHelper::instance()->moneyFormat($order->discount_amount) !!} @endif @else none @endif

{!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@discountUpdate', $order->id]]) !!} @if(Auth::user()->role_id != 5 && Auth::user()->role_id != 4) @endif {!! Form::close() !!}
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']) !!}
{{--ADDITIONAL CHARGE--}} {{--
--}} {{--
--}} {{--

Extra Charge: --}} {{--@if($order->additional_charge_amount != '')--}} {{----}} {{--@if($order->additional_charge_type == 1)--}} {{--{!! \AppHelper::instance()->moneyFormat(( $order->total) * ($order->additional_charge_amount /100)) !!}--}} {{--@else--}} {{--{!! \AppHelper::instance()->moneyFormat($order->additional_charge_amount) !!}--}} {{--@endif--}} {{----}} {{--@else--}} {{--none--}} {{--@endif--}} {{--

--}} {{--
--}} {{--
--}} {{----}} {{--{!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@addChargeUpdate', $order->id]]) !!}--}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{--@if(Auth::user()->role_id != 4)--}} {{----}} {{--@endif--}} {{----}} {{--{!! Form::close() !!}--}} {{--
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']) !!}
--}} {{--
--}} {{--
--}} {{--COUPON--}}

Active Coupon: @if($order->coupon_code != '') @if($order->coupon_type == 1) {{ $order->coupon_code }} ( {{$order->coupon_amount }}% or {!! \AppHelper::instance()->moneyFormat(( $order->total) * ($order->coupon_amount /100)) !!} ) @else {{ $order->coupon_code }} ( {!! \AppHelper::instance()->moneyFormat($order->coupon_amount) !!} ) @endif @else none @endif

@if($order->coupon_code == '') {!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@couponActivate', $order->id]]) !!} @if(Auth::user()->role_id != 5 && Auth::user()->role_id != 4) @endif {!! Form::close() !!} @else @if(Auth::user()->role_id != 5 && Auth::user()->role_id != 4) {!! Form::open(['method'=>'POST','action' => ['AdminOrdersController@couponDeactivate', $order->id]]) !!} {!! Form::close() !!} @endif @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']) !!}
{{--FINAL PRICE--}}

Final Price

{!! \AppHelper::instance()->moneyFormat($order->final_price ) !!}

{{--LABEL SELECTION--}} @if($order->order_type == 1 || $order->order_type == 2)

Label Selection

@if($order->label_type_id == 1)
Label Option {{$order->labelType->name}}
Label {{$label_info['name']}}
@endif @if($order->label_type_id == 2) @if(isset($label['canvas'])) @endif @if(isset($label['name'])) @else @endif
Label Option {{$order->labelType->name}} Name: {{$label['customer_name']}}
Label {{$label['name']}}Label {{$label_info['name']}}Contact 1 {{$label['contactinfo1']}}
Font {{$label['font']}} Contact 2 {{$label['contactinfo2']}}
@endif @if($order->label_type_id == 3)
Label Option {{$order->labelType->name}}
@endif
@endif {{--FINAL PRICE--}} @include('admin.orders.partials.logs') {{--UPLOAD--}} @include('admin.orders.partials.upload')
{{--CUSTOMER INFO--}}

Customer Information

{!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@customerInformationUpdate', $order->id]]) !!} @if(Auth::user()->role_id != 5 && Auth::user()->role_id != 4) @endif {!! Form::close() !!}
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 Email {!! 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']) !!}
{{--SHIPPING INFO--}}

Shipping Information

{!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@shippingInformationUpdate', $order->id]]) !!} @if(Auth::user()->role_id != 5 && Auth::user()->role_id != 4) @endif {!! Form::close() !!}
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']) !!}
{{--BILLING INFO--}}

Billing Information

{!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@billingInformationUpdate', $order->id]]) !!} @if(Auth::user()->role_id != 5 && Auth::user()->role_id != 4) @endif {!! Form::close() !!}
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']) !!}
{{--CREDIT CARD INFO--}} @if($order->payment_method == 'cc')

Credit Card Information

@if(Auth::user()->role_id == 2 || Auth::user()->role_id == 7) {!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@creditCardUpdate', $order->id]]) !!} @if($order->transaction_id) {!! Form::close() !!} @else {!! Form::close() !!} @if($order->card_number !='') @endif @if(Auth::user()->role_id != 5 && Auth::user()->role_id != 4 && $order->order_type != 0) @endif @endif @else @endif
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}}
@endif {{--INVOICE--}} @if($order->payment_method == 'invoice')

Invoice

@if(Auth::user()->role_id != 5 && Auth::user()->role_id != 4) @endif
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() !!}
@endif {{--PAID--}}

Paid: @if($order->paid == 0) NO @else YES @endif

{!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@paid', $order->id]]) !!} @if(Auth::user()->role_id != 5 && Auth::user()->role_id != 4) @endif {!! Form::close() !!}
{!! Form::select('paid', [0=>'No',1=>'Yes'] , $order->paid, ['class'=>'form-control select2']) !!}
{!! Form::submit('Save', ['class'=>'form-control btn-warning']) !!}
{{--ADDITIONAL INFO--}}

Additional Information

{!! Form::open(['method'=>'PUT','action' => ['AdminOrdersController@CommentUpdate', $order->id]]) !!} {!! Form::close() !!}
{!! Form::textarea('comment' , $order->comment, ['class'=>'form-control','placeholder'=>'Add Notes','rows'=>'3']) !!}
{!! Form::submit('Save Notes', ['class'=>'form-control btn-warning']) !!}
@stop @section('footer') @stop