10
9

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でuuidをidとするモデルを作りたいとき

Last updated at Posted at 2021-09-04

LaravelのEloquentモデルのidは通常数値なわけですが、uuidを使いたい!といった場合があると思います。

そういった場合、

$post = new Post();
$post->id = Str::uuid();
...
$post->save();

といった形を取るかもしれないのですが、もっと良い形で書く方法があって、それはイベントを利用する方法です。

class Post extends Model
{
    protected static function booted()
    {
        static::creating(function(Post $model) {
            empty($model->id) && $model->id = Str::uuid();
        });
    }
}

このように書くことによってidをセットしてなくとも作成しようとするときに自動的にuuidが作成されて保存されます。

オブザーバークラスを作る方法もありますが、これくらいであればそのまま書いて良さそうです。

この辺に書いてあります
https://laravel.com/docs/8.x/eloquent#events-using-closures

10
9
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
10
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?