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

【Laravel 開発入門】usersテーブルにテスト用ユーザーを作成する

Posted at

Laravelでusersテーブルにテスト用ユーザーを作成する方法

動作環境

  • Laravel 8.x以降
  • PHP 7.3以上

Laravelアプリケーションの開発やテストでは、usersテーブルにテスト用のユーザーデータを挿入することがよくあります。この記事では、シーダー機能を使用してテスト用ユーザーを簡単に作成する方法を解説します。

テスト用ユーザー作成の手順

1. シーダークラスの作成

php artisan make:seeder UsersTableSeeder

2. シーダークラスの実装

database/seeders/UsersTableSeeder.phpを以下のように編集:

<?php

namespace Database\Seeders;

use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Hash;

class UsersTableSeeder extends Seeder
{
    public function run()
    {
        DB::table('users')->insert([
            'name' => 'テストユーザー',
            'email' => 'test@example.com',
            'password' => Hash::make('password'),
            'created_at' => now(),
            'updated_at' => now()
        ]);
    }
}

3. シーダーの実行

php artisan db:seed --class=UsersTableSeeder

まとめ

この方法を使用することで、usersテーブルに簡単にテスト用ユーザーを作成できます。開発やテストの際に、必要に応じてユーザーデータを容易に追加できるため、効率的なアプリケーション開発が可能になります。

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