2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【備忘録】xampp環境でlaravelインストール直後に行ういろいろ(プロジェクト作成~確認)

Last updated at Posted at 2022-03-14

xamppへlaravelインストール後のメモ

xampp環境で起動方法とかいろいろ忘れちゃいそうなのでメモ

▼laravelインストール後

c:\xampp 配下で以下を実行し、プロジェクトを作成する

 laravel new プロジェクト名

※今回はlaravel new shiftappを作成。(シフト管理ページ)

作成したプロジェクトのディレクトリへ移動する

(ベースサンプル→C:\xampp\htdocs\laravel_sample)
今回は↓

C:\xampp\shiftapp

その後、以下コマンド実行後、http://127.0.0.1:8000 へアクセスする。

php artisan serve

確認→http://127.0.0.1:8000


・初期設定ファイルメモ

いろいろ日本にする設定

app.phpを変更
'timezone' => 'UTC',

'timezone' => 'Asia/Tokyo',

'locale' => 'en',

'locale' => 'ja',

'fallback_locale' => 'en',

'fallback_locale' => 'ja',

'faker_locale' => 'en_US',

'faker_locale' => 'ja_JP',

ファイル変更後、キャッシュクリア

php artisan config:clear
2
0
2

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?