@extends('layouts.app') @section('content')
@include('layouts.includes.header')

Add New Channel

@if(Session::has('msg'))
× {!!Session::get('msg')!!}
@endif
store_image

Woocommerce

Use the following instructions to integrate woocommerce:

  1. Please enter your store URL.
  2. You'll be taken to a page within WooCommerce where you'll need to approve the permissions that Shipjunction needs to operate (i.e. import your orders, push order statuses, etc.). You must click "Approve".
  3. Once you approve the connection, you will be redirected to Channel page with your consumer key and consumer secret.
  4. Seller can update the order status s/he wants to pull in Shipjunction.
  5. Post that, please click on update Channel and test Credentials to create the channel in Shipjunction.
  6. Note:Enable REST API in your WooCommerce plugin.To enable REST API in Woocommerce, Navigate to Settings>Advanced>Legacy API. Click on Enable Rest API and save the settings
{{ Form::open(array('url' => 'store/create' ,'files'=>true)) }} {!! Form::hidden('type', 'woo') !!}

Seller Panel

{!! Form::label('store-url', 'Store Url') !!}
{!! Form::text('store-url', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. http://demo02.myshopify.com']) !!} @if ($errors->has('store-url')) {{ $errors->first('store-url') }} @endif
{!! Form::label('status-to-fetch', 'Order Status to fetch') !!}
{!! Form::text('status-to-fetch', null, ['class' => 'form-control rounded','title'=>'pending, processing, on-hold, completed, cancelled, refunded, failed , trash', 'placeholder'=>'e.g. pending, processing, on-hold, completed, cancelled, refunded, failed , trash']) !!} @if ($errors->has('status-to-fetch')) {{ $errors->first('status-to-fetch') }} @endif
{!! Form::label('auto_sync', 'Auto Sync') !!}
{!! Form::label('Label', 'Label Setting') !!}
{!! Form::label('logo', 'Store Logo') !!}
{{ Form::close() }}
@endsection