First of all thanks for this simple yet great package.
However I was pulling my hair out the last two days on why I cannot properly retrieve the session id from the models.
By default, Laravel casts all primaryKey fields to int, which destroys the actual session id that is a string. Instead, the model needs protected $keyType = 'string'
First of all thanks for this simple yet great package.
However I was pulling my hair out the last two days on why I cannot properly retrieve the session id from the models.
By default, Laravel casts all primaryKey fields to int, which destroys the actual session id that is a string. Instead, the model needs
protected $keyType = 'string'
I committed the necessary line.