Я использую vinkla / hashids, и я выполнил следующие шаги
И я получаю ошибку, что класс хешей не найден
Похоже, провайдер не загружается.
Попробуйте сделать это:
php artisan config:clear
php artisan clear-compiled
Первый очистит все кэшированные файлы конфигурации, а затем очистит кэш служб.
Это сработало для меня, надеюсь, это сработает и для вас.
Я нашел решение здесь: Laravel 5.2 Поставщик услуг не загружается
Попробуйте проверить внутри вашего $laravelSite/config
Каталог, чтобы увидеть, если вы найдете файл с именем hashids.php
…
В вашем контроллере; попробуйте также импортировать Hashids
Класс вручную вроде так:
<?php
namespace App\Http\Controllers;
use Vinkla\Hashids\Facades\Hashids;
class SampleClass extends {
public function testHashID(){
$h1 = Hashids::encode(4815162342);
var_dump($h1);
$h2 = Hashids::decode('oaobgb-rnar');
var_dump($h2);
}
}
И кстати; если ты не видишь hashids.php
в вашем $laravelSite/config
Справочник; Вы можете попробовать создать его вручную. Файл просто возвращает массив настроек конфигурации … содержимое файла выглядит так:
/*
* This file is part of Laravel Hashids.
*
* (c) Vincent Klaiber <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return [
/*
|--------------------------------------------------------------------------
| Default Connection Name
|--------------------------------------------------------------------------
|
| Here you may specify which of the connections below you wish to use as
| your default connection for all work. Of course, you may use many
| connections at once using the manager class.
|
*/
'default' => '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' => [
'main' => [
'salt' => 'your-salt-string',
'length' => 'your-length-integer',
'alphabet' => 'your-alphabet-string',
],
'alternative' => [
'salt' => 'your-salt-string',
'length' => 'your-length-integer',
'alphabet' => 'your-alphabet-string',
],
],
];
Для кодирования просто сделайте это
\Hashids::encode($characters)
И декодировать
\Hashids::decode($characters)