Magento Cart
Use the following instructions to integrate Magento:
For Magento Admin Panel- Login to Magento admin panel.
- Go to system -> all users as shown below
- Click on "Add New User".
- Under User Info tab, fill all required info user name, first name etc.
- Click on " Save User" shown at the top right corner.
- Then click on " User role", for example Superadmin to give access .
- Fill in the Parameters as saved from the Magento Panel Store URL : The URL of your store. API Key & API Username : API details your Magento Panel (As Mentioned in Magento Step 4)
General Information
Follow these instructions on how to add Channel
{!! Form::open(array('url'=>'')) !!}
{{ csrf_field() }}
{!! Form::label('channel-name', 'Channel Name') !!}
{!! Form::text('channel-name', null, ['class' => 'form-control rounded', 'required' => 'required']) !!}
@if ($errors->has('channel-name'))
{{ $errors->first('channel-name') }}
@endif
Seller Panel
{!! Form::label('store-url', 'Store Url') !!}
{!! Form::url('store-url', null, ['class' => 'form-control rounded', 'required' => 'required', 'placeholder'=>'e.g. http://shipjunction.magento.com without ending slash']) !!}
@if ($errors->has('store-url'))
{{ $errors->first('store-url') }}
@endif
{!! Form::label('admin-username', 'Admin Username') !!}
{!! Form::password('admin-username', null, ['class' => 'form-control rounded', 'required' => 'required', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!}
@if ($errors->has('admin-username'))
{{ $errors->first('admin-username') }}
@endif
{!! Form::label('admin-password', 'Admin Password') !!}
{!! Form::password('admin-password', null, ['class' => 'form-control rounded', 'required' => 'required', 'placeholder'=>'e.g. XXXXXXXXXXXXX']) !!}
@if ($errors->has('admin-password'))
{{ $errors->first('admin-password') }}
@endif
{!! Form::label('status-to-fetch', 'Order Status to fetch') !!}
{!! Form::text('status-to-fetch', null, ['class' => 'form-control rounded', 'placeholder'=>'e.g. processing, pending, holded, pending_payment', 'title'=>'e.g. processing, pending, holded, pending_payment']) !!}
@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') !!}