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

19 行
299B

  1. <?php
  2. namespace App\Util;
  3. use Illuminate\Support\Collection;
  4. class OptionUtil
  5. {
  6. static public function getOptions(Collection|array $data)
  7. {
  8. $ret = collect();
  9. foreach ($data as $key => $val) {
  10. $ret->push([$key => $val]);
  11. }
  12. return $ret;
  13. }
  14. }