1
0

More than 3 years have passed since last update.

[composer]Laravelプロジェクト作成

Last updated at Posted at 2020-07-11

プロジェクトの作成

$ composer create-project laravel/laravel output_english

app.phpの設定

app.php
'timezone' => 'Asia/Tokyo',
'locale' => 'ja',

database.phpの設定

database.php
'mysql' => [
   'charset' => 'utf8',
   'collation' => 'utf8_unicode_ci',
 ],

データベース接続

データーベース、ユーザーの作成、.env設定後、マイグレーション

php artisan migrate

エラーになる場合はコチラを確認してみてください。

1
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
1
0