Download the PHP package jblv/daimakuai without Composer

On this page you can find all versions of the php package jblv/daimakuai. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package daimakuai

Daimakuai

Build Status StyleCI Scrutinizer Code Quality Packagist Latest Stable Version Total Downloads Awesome Laravel Join the chat at https://gitter.im/daimakuai/daimakuai

daimakuai 是一个可以快速帮你构建后台管理的工具,它提供的页面组件和表单元素等功能,能帮助你使用很少的代码就实现功能完善的后台管理功能。

Demo 账号/密码:admin/admin

截图

PC端访问

daimakuai

手机端访问

daimakuai

安装

首先确保安装好了 Composer Laravel,并且数据库连接设置正确,如果没有安装,请访问安装Laravel进行安装。

Jblv\Admin\Providers\AdminServiceProvider::class

启动服务后,在浏览器打开 http://localhost/admin/ ,使用用户名 admin 和密码 admin登陆.

宝塔部署注意

1、 伪静态增加: location / {
try_files $uri $uri/ /index.php$is_args$query_string;
}

2、网站目录去掉 防跨站攻击(open_basedir)

3、网站目录 选择根目录,运行目录选择 public

默认配置

安装完成之后,daimakuai所有的配置都在config/admin.php文件中。

使用文档

目录结构

安装完成之后,后台的安装目录为app/Admin,之后大部分的后台开发编码工作都是在这个目录下进行。

app/Admin/routes.php文件用来配置后台路由,详细使用请阅读路由配置。

app/Admin/Controllers目录用来存放后台路由器文件,该目录下的HomeController.php文件是后台首页的显示控制器,ExampleController.php为实例文件。

快速开始

Laravel自带的users表举例,表结构为:

对应的数据模型为文件 App\User.php

daimakuai可以通过使用以下几步来快速生成users表的CURD操作页面:

1.添加路由器

使用下面的命令来创建一个对应App\User模型的路由器

上面的命令会创建路由器文件app/Admin/Controllers/UserController.php.

2.添加路由配置

daimakuai的路由配置文件app/Admin/routes.php里添加一行:

3.添加左侧菜单栏连接

打开http://localhost:8000/admin/auth/menu,添加对应的menu

然后就能在后台管理页面的左侧边栏看到用户管理页面的链接入口了。

4.创建表格表单

剩下的工作就是构建数据表格和表单了,打开 app/Admin/Contollers/UserController.php,找到form()grid()方法,然添加构建代码,更多详细使用请查看model-form。

其它

daimakuai 基于以下组件或者服务:

交流

QQ群:14086762

License

daimakuai is licensed under The MIT License (MIT).


All versions of daimakuai with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0.0
symfony/dom-crawler Version ~3.1
laravel/framework Version ~5.5
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jblv/daimakuai contains the following files

Loading the files please wait ....