mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-20 19:54:08 +00:00
Fix hashids issue related to the length parameter type
This commit is contained in:
@@ -45,32 +45,32 @@ return [
|
|||||||
'connections' => [
|
'connections' => [
|
||||||
Invoice::class => [
|
Invoice::class => [
|
||||||
'salt' => Invoice::class.config('app.key'),
|
'salt' => Invoice::class.config('app.key'),
|
||||||
'length' => '20',
|
'length' => 20,
|
||||||
'alphabet' => 'XKyIAR7mgt8jD2vbqPrOSVenNGpiYLx4M61T',
|
'alphabet' => 'XKyIAR7mgt8jD2vbqPrOSVenNGpiYLx4M61T',
|
||||||
],
|
],
|
||||||
Estimate::class => [
|
Estimate::class => [
|
||||||
'salt' => Estimate::class.config('app.key'),
|
'salt' => Estimate::class.config('app.key'),
|
||||||
'length' => '20',
|
'length' => 20,
|
||||||
'alphabet' => 'yLJWP79M8rYVqbn1NXjulO6IUDdvekRQGo40',
|
'alphabet' => 'yLJWP79M8rYVqbn1NXjulO6IUDdvekRQGo40',
|
||||||
],
|
],
|
||||||
Payment::class => [
|
Payment::class => [
|
||||||
'salt' => Payment::class.config('app.key'),
|
'salt' => Payment::class.config('app.key'),
|
||||||
'length' => '20',
|
'length' => 20,
|
||||||
'alphabet' => 'asqtW3eDRIxB65GYl7UVLS1dybn9XrKTZ4zO',
|
'alphabet' => 'asqtW3eDRIxB65GYl7UVLS1dybn9XrKTZ4zO',
|
||||||
],
|
],
|
||||||
Company::class => [
|
Company::class => [
|
||||||
'salt' => Company::class.config('app.key'),
|
'salt' => Company::class.config('app.key'),
|
||||||
'length' => '20',
|
'length' => 20,
|
||||||
'alphabet' => 's0DxOFtEYEnuKPmP08Ch6A1iHlLmBTBVWms5',
|
'alphabet' => 's0DxOFtEYEnuKPmP08Ch6A1iHlLmBTBVWms5',
|
||||||
],
|
],
|
||||||
EmailLog::class => [
|
EmailLog::class => [
|
||||||
'salt' => EmailLog::class.config('app.key'),
|
'salt' => EmailLog::class.config('app.key'),
|
||||||
'length' => '20',
|
'length' => 20,
|
||||||
'alphabet' => 'BRAMEz5str5UVe9oCqzoYY2oKgUi8wQQSmrR',
|
'alphabet' => 'BRAMEz5str5UVe9oCqzoYY2oKgUi8wQQSmrR',
|
||||||
],
|
],
|
||||||
Transaction::class => [
|
Transaction::class => [
|
||||||
'salt' => Transaction::class.config('app.key'),
|
'salt' => Transaction::class.config('app.key'),
|
||||||
'length' => '20',
|
'length' => 20,
|
||||||
'alphabet' => 'ADyQWE8mgt7jF2vbnPrKLJenHVpiUIq4M12T',
|
'alphabet' => 'ADyQWE8mgt7jF2vbnPrKLJenHVpiUIq4M12T',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user