LoginSignup
0
0

More than 1 year has passed since last update.

laravel インストール ~ 運用まで(備忘録)

Last updated at Posted at 2019-10-06

インストール

composer create-project --prefer-dist laravel/laravel 名前

インストール後

composer update
cp .env.example .env
php artisan key:generate

良く使うライブラリ

"barryvdh/laravel-debugbar": "^3.2",

良く使うコマンド

マイグレーション

php artisan make:migration create_users_table --create=users
php artisan migrate

コントローラの作成

 php artisan make:controller HelloController
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0