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?

More than 1 year has passed since last update.

[Laravel]日付のダミーデータで期間を指定する

Posted at

はじめに

日付のダミーデータをいれる際に、期間を指定してランダムな日にちを生成する方法がわからなかったので、備忘録として残しておきます。

環境

  • Laravel:8.83.4

1. 実装

//略
    public function definition()
    {
        return [
            'date' => $this->faker->dateTimeBetween($startDate = 'now', $endDate = '+4 week'),
        ];
    }
//略

上記のコードで、今日から4週間後までの期間を指定しています。
また、今回は利用しませんでしたが、
($startDate = '-3 week', $endDate = '+2 week') のように指定することで、今日より前の期間でデータを生成することも可能です。

日付の指定だけでなく、数値範囲を指定するnumberBetween()のようなメソッドもあるので、うまく活用していきたいです。

2. 参考文献

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?