Laravel Faker 使用技巧

GuanJie發表於2019-01-17

資料分享
GitHub : https://github.com/fzaninotto/Faker


Laravel 中獲取 Faker 例項

  • $faker = app(Faker\Generator::class);

使用 tinker 檢視 faker 假資料

// 進入 tinker 模式
$ php artisan tinker

// 獲取 Faker 例項 $faker
>>> $faker = app(Faker\Generator::class);

// 檢視 faker 資料
>>> $faker->name()
>>> $faker->email()
>>> $faker->sentence()

示例

file

更多faker命令

https://github.com/fzaninotto/Faker

相關文章