您最多选择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. }