1<?php 2 3return [ 4 /* 5 |-------------------------------------------------------------------------- 6 | Hashids Configuration 7 |-------------------------------------------------------------------------- 8 | 9 | Here are the settings that control the Hashids setup and usage in the panel. 10 | 11 */ 12 'salt' => env('HASHIDS_SALT'), 13 'length' => env('HASHIDS_LENGTH', 8), 14 'alphabet' => env('HASHIDS_ALPHABET', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'), 15]; 16 17