1
1

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でローカルDB開発環境(確認編)

Last updated at Posted at 2021-11-29

ブラウザで確認する

cmderからphp artisanコマンドを使用し、サーバーを立ち上げます。
Laravelフォルダ内に移動します。

cd C:\xampp\htdocs\Laravel_CRUD

ローカルサーバを立ち上げます。

php artisan serve

「php artisan serve」のコマンドを実行後、「http://~」と表示されたURLをブラウザに入力することで、LaravelのWEBページを確認することができます。

※ルーティングで設定したURLを「http://~」の末尾に追加してブラウザから各ページを確認してください。

例:表示されたURLが「http://127.0.0.1:8000」の場合→「http://127.0.0.1:8000/login」

※ターミナルからコマンド入力に戻る場合は、「command+C」でサーバーを落とし、入力画面に戻ってからコマンド入力してください。

XAMPPのMySQLにログインする

ターミナルからXAMPPのMysqlにログインします。

XAMPPのmysqlコマンドが使用できる階層に移動します。

cd C:/XAMPP/mysql/bin/

mysqlログインコマンド

mysql -u root -p

mysqlのログインコマンドを入力、パスワードは変更していなければ入力せずにそのままEnterでログインできるはずです。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?