Giter VIP home page Giter VIP logo

zhixiao's Introduction

A php framework based on laravel.

演示地址:http://laravel.iat.net.cn

功能说明

后台

  • 整合gentelella前端框架
  • 登录、忘记密码、重置密码
  • 用户管理
  • 角色管理
  • 管理员管理
  • 日志记录
  • 日志管理
  • 错误页面
  • 图片上传、管理
  • 微信公众号配置

前台

  • 登录
  • 日志记录

api

  • api封装
  • 日志记录

微信公众号

  • 授权登录
  • 菜单
  • 自定义回复

微信小程序

  • 授权登录
  • 开箱即用框架weapp

安装说明

1、clone代码

git clone https://github.com/yaoshanliang/laravel.git

# git clone https://git.coding.net/iat/laravel.git

2、修改权限

chmod -R 777 storage
chmod -R 777 bootstrap

3、安装依赖

composer install

4、数据迁移

cp .env.example .env
php artisan key:generate
php artisan migrate
php artisan db:seed

5、nginx配置

server {
    listen 80;

    root /var/www/html/laravel/public; // 代码路径
    index index.php index.html;

    server_name laravel.dev; // 域名

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        fastcgi_pass   unix:/var/run/php/php7.0-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

6、访问

TODO

1、数据改动日志记录插件

2、微信小程序基础功能接入

3、项目功能宣传页

4、微信用户同步公众平台

5、优化微信菜单配置(一个页面展示)、增加点击触发消息

License

The Laravel framework is open-sourced software licensed under the MIT license.

zhixiao's People

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.