-# Topics
-1. ### [Introduction](#1-introduction-)
-2. ### [Documentation](#2-documentation-)
-3. ### [Requirements](#2-requirements-)
-4. ### [Installation & Configuration](#3-installation--configuration-)
-5. ### [License](#4-license-)
-6. ### [Miscellaneous](#5-miscellaneous-)
+## Topics
+1. [Introduction](#introduction)
+2. [Documentation](#documentation)
+3. [Requirements](#requirements)
+4. [Installation & Configuration](#installation-and-configuration)
+5. [License](#license)
+6. [Miscellaneous](#miscellaneous)
-### 1. Introduction :
+### Introduction
[Bagisto](https://www.bagisto.com) is a hand tailored E-Commerce framework designed on some of the hottest opensource technologies
such as [Laravel](https://laravel.com) a [PHP](https://secure.php.net/) framework, [Vue.js](https://vuejs.org)
@@ -54,11 +54,11 @@ It packs in lots of demanding features that allows your business to scale in no
Dev guys can take advantage of two of the hottest frameworks used in this project Laravel and Vue.js, both of these frameworks have been used in Bagisto.
Bagisto is using power of both of these frameworks and making best out of it out of the box.
-### 2. Documentation :
+### Documentation
#### Bagisto Documentation [https://devdocs.bagisto.com](https://devdocs.bagisto.com)
-### 3. Requirements :
+### Requirements
* **OS**: Ubuntu 16.04 LTS or higher.
* **SERVER**: Apache 2 or NGINX
@@ -70,7 +70,7 @@ Bagisto is using power of both of these frameworks and making best out of it out
* **Node**: 8.11.3 LTS or higher.
* **Composer**: 1.6.5 or higher.
-### 4. Installation & Configuration :
+### Installation and Configuration
**1. Try our new GUI installer to install Bagisto:**
@@ -172,36 +172,26 @@ password:admin123
> *http(s)://example.com/customer/register*
-### 5. License :
+### License
Bagisto is a truly opensource E-Commerce framework which will always be free under the [MIT License](https://github.com/bagisto/bagisto/blob/master/LICENSE).
-### 6. Miscellaneous :
+### Miscellaneous
#### Contributors
-This project exists thanks to all the people who contribute.
-
+This project is on [Open Collective](https://opencollective.com/bagisto) and it exists thanks to this people who contribute.
+
#### Backers
-Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/bagisto#backer)]
-
-
+Thank you to all our backers! 🙏
+
#### Sponsors
-Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/bagisto#sponsor)]
+Support this project by becoming a sponsor. Your logo will show up here with a link to your website.
-
-
-
-
-
-
-
-
-
-
+
diff --git a/packages/Webkul/Admin/src/DataGrids/CategoryDataGrid.php b/packages/Webkul/Admin/src/DataGrids/CategoryDataGrid.php
index 80bcfc648..30ec08e06 100755
--- a/packages/Webkul/Admin/src/DataGrids/CategoryDataGrid.php
+++ b/packages/Webkul/Admin/src/DataGrids/CategoryDataGrid.php
@@ -58,7 +58,7 @@ class CategoryDataGrid extends DataGrid
$this->addColumn([
'index' => 'position',
'label' => trans('admin::app.datagrid.position'),
- 'type' => 'string',
+ 'type' => 'number',
'searchable' => false,
'sortable' => true,
'filterable' => true
diff --git a/packages/Webkul/Admin/src/DataGrids/CustomerGroupDataGrid.php b/packages/Webkul/Admin/src/DataGrids/CustomerGroupDataGrid.php
index 820b4ad03..541232d08 100755
--- a/packages/Webkul/Admin/src/DataGrids/CustomerGroupDataGrid.php
+++ b/packages/Webkul/Admin/src/DataGrids/CustomerGroupDataGrid.php
@@ -38,7 +38,7 @@ class CustomerGroupDataGrid extends DataGrid
$this->addColumn([
'index' => 'code',
'label' => 'Code',
- 'type' => 'number',
+ 'type' => 'string',
'searchable' => false,
'sortable' => true,
'filterable' => true
diff --git a/packages/Webkul/Admin/src/DataGrids/LocalesDataGrid.php b/packages/Webkul/Admin/src/DataGrids/LocalesDataGrid.php
index 63dc7a54a..cf1f7b562 100755
--- a/packages/Webkul/Admin/src/DataGrids/LocalesDataGrid.php
+++ b/packages/Webkul/Admin/src/DataGrids/LocalesDataGrid.php
@@ -19,7 +19,7 @@ class LocalesDataGrid extends DataGrid
public function prepareQueryBuilder()
{
- $queryBuilder = DB::table('locales')->addSelect('id', 'code', 'name');
+ $queryBuilder = DB::table('locales')->addSelect('id', 'code', 'name', 'direction');
$this->setQueryBuilder($queryBuilder);
}
@@ -52,6 +52,15 @@ class LocalesDataGrid extends DataGrid
'sortable' => true,
'filterable' => true
]);
+
+ $this->addColumn([
+ 'index' => 'direction',
+ 'label' => trans('admin::app.datagrid.direction'),
+ 'type' => 'string',
+ 'searchable' => true,
+ 'sortable' => true,
+ 'filterable' => true
+ ]);
}
public function prepareActions() {
diff --git a/packages/Webkul/Admin/src/Resources/lang/en/app.php b/packages/Webkul/Admin/src/Resources/lang/en/app.php
index 9391c3b6a..3aefe0d71 100755
--- a/packages/Webkul/Admin/src/Resources/lang/en/app.php
+++ b/packages/Webkul/Admin/src/Resources/lang/en/app.php
@@ -115,6 +115,7 @@ return [
'code' => 'Code',
'admin-name' => 'Name',
'name' => 'Name',
+ 'direction' => 'Direction',
'fullname' => 'Full Name',
'type' => 'Type',
'required' => 'Required',
@@ -398,7 +399,8 @@ return [
'related-products' => 'Related Products',
'product-search-hint' => 'Start typing product name',
'no-result-found' => 'Products not found with same name.',
- 'searching' => 'Searching ...'
+ 'searching' => 'Searching ...',
+ 'channel' => 'Channels'
],
'attributes' => [
@@ -449,7 +451,8 @@ return [
'swatch' => 'Swatch',
'image' => 'Image',
'file' => 'File',
- 'checkbox' => 'Checkbox'
+ 'checkbox' => 'Checkbox',
+ 'use_in_flat' => "Create in Product Flat Table",
],
'families' => [
'title' => 'Families',
@@ -493,6 +496,8 @@ return [
'meta_description' => 'Meta Description',
'meta_keywords' => 'Meta Keywords',
'image' => 'Image',
+ 'filterable-attributes' => 'Filterable Attributes',
+ 'attributes' => 'Attributes',
]
],
@@ -564,6 +569,7 @@ return [
'general' => 'General',
'code' => 'Code',
'name' => 'Name',
+ 'direction' => 'Direction',
'create-success' => 'Locale created successfully.',
'update-success' => 'Locale updated successfully.',
'delete-success' => 'Locale deleted successfully.',
diff --git a/packages/Webkul/Admin/src/Resources/views/catalog/attributes/create.blade.php b/packages/Webkul/Admin/src/Resources/views/catalog/attributes/create.blade.php
index 86be00c7a..1c0450dd2 100755
--- a/packages/Webkul/Admin/src/Resources/views/catalog/attributes/create.blade.php
+++ b/packages/Webkul/Admin/src/Resources/views/catalog/attributes/create.blade.php
@@ -36,7 +36,7 @@
{!! view_render_event('bagisto.admin.catalog.attribute.create_form_accordian.general.controls.before') !!}