dictionary.php 183 B

12345678910111213141516
  1. <?php
  2. use Illuminate\Support\Facades\Facade;
  3. /*
  4. * 数据字典 dictionary
  5. */
  6. return [
  7. //是否启用
  8. 'enabled' => [
  9. '0' => 'No',
  10. '1' => 'Yes',
  11. ],
  12. ];