前提
以下のコマンドを実行し、Laravel8のプロジェクトを作成していること
composer create-project laravel/laravel {プロジェクト名} "8.*" --prefer-dist
MySQLのサーバー起動
$ sudo mysql.server start
ログインコマンド実行
$ sudo mysql -u {ユーザ名} -h {ホスト名} -p
.env の初期値から特に変更していないため、ユーザ名は「root」ホスト名は「localhost」を指定
正しいパスワードを入力するとログインに成功する
$ sudo mysql -u root -h localhost -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 8.1.0 Homebrew
Copyright (c) 2000, 2023, Oracle and/or its affiliates.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>