denyadzi / luya-module-estore

E-Store Module for LUYA

Home Page:https://luya.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

E-STORE MODULE

Work in Progress - don't use in Production

Connect the E-Store module to an existing LUYA Instance with or without CMS. The E-Store Module basically provides the Administration Area and the Database Setup. For the Frontend there are some usefull widgets you can use.

For now, you have to create your own controllers and actions in order to access, list or display the models

Installation

Install the module trough composer:

compser require luyadev/luya-module-estore:dev-master

Add the module to the config

'modules' => [
    'estoreadmin' => [
        'class' => 'luya\estore\admin\Module',
    ]
]

Run the migration and import commands:

./vendor/bin/luya migrate
./vendor/bin/luya import

Go into the groups section and assign the new estore admin permissions to your account. You should now be able to see the administration area.

Controllers and Frontend

Until now this work in progress Module contains only the admin area with all migrations and models. In order to display the products you have to create your own controllers, actions and views:

namespace app\controllers;

use luya\web\Controller;
use yii\data\ActiveDataProvider;
use luya\estore\models\Product;

class EstoreController extends Controller
{
    public function actionIndex()
    {
        $provider = new ActiveDataProvider([
            'query' => Product::find(),
        ]);
        
        return $this->render('index', [
            'provider' => $provider,
        ]);
    }
}

ERD

Here you can see how the tables are connected with each other:

ERD

About

E-Store Module for LUYA

https://luya.io


Languages

Language:PHP 96.8%Language:JavaScript 1.7%Language:Hack 1.6%