I have a hexadecimal number that I want to store in a database (PostgreSQL) using Eloquent
I tried the following
Migration
$table->bigInteger('battery')->nullable()->default(null);
Storing
$model->battery = hexdec($value)
This only works when $value
such as e.g. 1000000010,000000000
But it doesn't work when $value = FFFFFFF0002D4004
How can I store this kind of data