選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

State.php 316B

1234567891011121314
  1. <?php
  2. namespace App\Faker;
  3. use App\Models\Locale\State as StateModel;
  4. use Faker\Provider\Base;
  5. class State extends Base
  6. {
  7. public function state(string $countryCode, string $column = 'id'): mixed
  8. {
  9. return StateModel::where('country_id', $countryCode)->inRandomOrder()->first()?->{$column};
  10. }
  11. }