emayk/faker is a Laravel package for extend localization indonesian base faker.
It currently has 0 GitHub stars and 33 downloads on Packagist.
Install it with composer require emayk/faker.
Discover more Laravel packages by emayk
or browse all Laravel packages to compare alternatives.
Last updated
###Apa ini ?
Generate Data Faker ini berbasis pada fzaninotto/faker: 1.4.*@dev
###Instalasi
"emayk/faker": "dev-master"composer install atau compose update$faker = new \Emayk\Faker\Factory();
$bank_account = array();
for ($i=0; $i <= 15; $i++) {
$account_name = $faker->unique()->bankaccountname;
$account = array('name' => $account_name,
'info' => "Info {$account_name}"
);
$bank_account[] = array_merge($account,$faker->fillattributes);
}
fzaninotto/faker$bankaccountname // echo
untuk $bankaccountname maximal 15