love_php/database/factories/MessageFactory.php
2026-04-02 09:20:51 +08:00

15 lines
383 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
use Faker\Generator as Faker;
$factory->define(App\Models\Message::class, function (Faker $faker) {
return [
'phone'=>'15872844805',
'message'=>'验证码8767福恋用科技让交友变简单',
'code'=>8767,
'ip'=>'192.168.10.1',
'created_at'=>'2020-04-21 09:39:25',
'updated_at'=>'2020-04-21 09:39:25'
];
});