'main', /* |-------------------------------------------------------------------------- | Hashids Connections |-------------------------------------------------------------------------- | | Here are each of the connections setup for your application. Example | configuration has been included, but you may add as many connections as | you would like. | */ 'connections' => [ Invoice::class => [ 'salt' => Invoice::class.'7623e9b0009feff8e024a689d6ef59ce', 'length' => '20', 'alphabet' => 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890' ], Estimate::class => [ 'salt' => Estimate::class.'7623e9b0009feff8e024a689d6ef59ce', 'length' => '20', 'alphabet' => 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890' ], Payment::class => [ 'salt' => Payment::class.'7623e9b0009feff8e024a689d6ef59ce', 'length' => '20', 'alphabet' => 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890' ], ], ];