首页 > laravel5.8的使用

laravel5.8的使用

首先,确定电脑已经安装了composer。最好是全局安装

然后打开phpstorm的控制台:

composer create-project --prefer-dist laravel/laravel blog另外一种方式步骤多。然后中间配置的地方又多,不推荐。



artisan

在Laravel根目录下运行: PHP artisan list可查看所有命令列表。

下面列举部分比较常用的命令:

启用维护模式:php artisan down --message='Upgrading Database' --retry=60

关闭维护模式:php artisan up

生成路由缓存:php artisan route:cache

清除路由缓存:php artisan route:clear

数据库迁移 Migrations:php artisan make:migration create_users_table --create=users

创建资源控制器:php artisan make:controller PhotoController --resource --model=Photo

创建模型及迁移:php artisan make:model User -m



生成控制器文件 php artisan make:controller  MemberC
ontroller
 
 

转载于:https://www.cnblogs.com/cici1989/p/10595016.html

更多相关:

  • php需要安装swoole扩展 swoole4.3.2 cd /usr/local/src/wget https://pecl.php.net/get/swoole-4.3.2.tgztar -zxvf swoole-4.3.2.tgzmv swoole-4.3.2 swoolecd swoole/usr/local/php/bin...

  • 1 在pecl.php.net搜索你需要的php扩展 2 在解压后的扩展目录运行phpize 3 执行编译./configure --with-php-config=/usr/local/php/bin/php-config 4 修改php/lib/php.ini文件  加上这句话extention=扩展.so的绝对路径 转载于...

  • 先上图,如下是安装成功后的phpinfo()界面:   安装步骤: 1、先确定安装版本,比如我的的php : php7.0.12  x86 ts     那么就需要三方版本 要一致:imagick软件本身( 如x86 )、php本身( x86 ts (thread safe) )、php扩展php_imagick.dll (ts)...

  • 安装PHP Manager:   1)访问 http://phpmanager.codeplex.com/releases/view/69115 下载PHP Manager。其中,x86 为32位 Windows 系统使用,x64 为64位 Windows 系统使用,请根据使用的 Windows 系统情况下载   2)下载后,双击默认...

  • PHP5.3连接SQL Server就不能用php_mssql.dll了。 网上下载了好多都不行,因为它的版本是5.2的,不能再PHP5.3中使用。 后来听说微软专门为PHP出了自己的dll。 叫做Microsoft SQL Server Driver for PHP PHP5.3中用3.0的版本就可以了。 SQLSRV30.EXE...

  • 比较详细的教程参见以前的博文 http://blog.csdn.net/tao_627/article/details/60957521 这里只给出简略步骤,没有截图,自始至终使用root操作 目前最新的源码地址 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/...

  • 继续翻译 5.7.4 The `--print-directory' Option ------------------------------------If you use several levels of recursive `make' invocations, the `-w' or `--print-directory...

  • 1、 make 时钟错误 make: Warning: File `Makefile' has modification time 4.6e+07 s in the future make: 警告:检测到时钟错误。您的创建可能是不完整的。 解决方法:运行下列命令再makefind . -type f -exec touch {} ;...