• 订单系统开发01


    创建项目

    laravel new ordersys
    

    迁移数据库文件

    php artisan migrate
    

    设置数据库

    相关表格

    1、产品表(products)
        name
        price
    2、订单表(orders)
        products_id
        attributes_id
        num(数量)
        amount(总金额)
        city(地区)
        address
        paymethod
        remark(备注)
        ifpayed
            - false 未付款
            - true  已付款
        status
            - 0 未发货
            - 1 已发货
            - 2 已完成
            - 3 被拒收
    3、图片表(imgs)
        products_id
        name
        imgaddress
        imginfo
    4、类目(categorys)
        name
        value
    5、特征(attributes)
        name
        value
    6、客户表(customers)
        name
        phone
        address
    7、库存(stocks)
        products_id
        attributes_id
        sum(总量)
        saled(已经卖出)
        balance(剩余)
    8、物流信息(logistics)
        orders_id
        lognumber
        loginfo
        status
            - 0 运输中
            - 1 已签收
            - 2 拒收
            - 3 已退回
    

    创建相关表格

    php artisan make:migration create_products_table --create=products
    php artisan make:migration create_orders_table --create=orders
    php artisan make:migration create_imgs_table --create=imgs
    php artisan make:migration create_categorys_table --create=categorys
    php artisan make:migration create_attributes_table --create=attributes
    php artisan make:migration create_customers_table --create=customers
    php artisan make:migration create_stocks_table --create=stocks
    php artisan make:migration create_logistics_table --create=logistics
    

    设置相关属性

     public function up()
        {
        Schema::create('products', function (Blueprint $table) {
            $table->increments('id');
            $table->string('name');
            $table->decimal('price',5,2);
            $table->timestamps();
        });
        }
    

    迁移数据库

    php artisan migrate:reset
    

    创建注册/登录验证试图

    php artisan make:auth
  • 相关阅读:
    基于CodeSmith的三层架构代码模板
    全自动时代:JavaScript自动压缩插件
    NServiceBus最流行的开源企业服务总线 for .Net
    神奇的东西
    WebMatrix
    .Net TDD我用Machine.Specification
    JQuery Smart UI 简介(四) — 强大的适用性&存在问题【项目使用性介绍】
    JQuery Smart UI 简介(三)
    JQuery Smart UI 简介(二)
    基于WCF大型分布式系统的架构设计
  • 原文地址:https://www.cnblogs.com/shamojituan/p/6384885.html
Copyright © 2020-2023  润新知