資料分享
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()