3
2

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 3 years have passed since last update.

laravel 登録したユーザー名をブラウザに表示させる方法

Last updated at Posted at 2020-08-15

完成版

スクリーンショット 2020-08-15 12.30.09.png

ユーザー登録画面で保存した名前を

スクリーンショット 2020-08-15 13.17.33.png

ログイン後にプラウザで表示させます

前提条件 

  • ユーザー登録できる状態
  • usersテーブルにnameがある状態(migratetionsファイルのusers.tableで確認できます)
/migrations/2014_10_12_000000_create_users_table.php
public function up()
    {
        Schema::create('users', function (Blueprint $table) {
            $table->bigIncrements('id');
            
            $table->string('name');        //こちらです
            
            //中略
        });
    }

作成

使用環境: Laravel framework 6.18.24 PHP7

/views/index.blade.php
<h1>おかえりなさい <?php $user = Auth::user(); ?>{{ $user->name }}</h1>

これでユーザー名が表示されます。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?