Eric Fletcher
Eric Fletcher
You need to install/enable the appropriate php extension on your server. I don't remember offhand if it's literally exif or imagegd or something else, but should be easily google-able
Monetary values shouldn't be stored in floating-point numbers anyway (https://spin.atomicobject.com/2014/08/14/currency-rounding-errors/. it's a bit old, but the points are still relevant)
Yes, but what variable does that value go into when it gets pulled out of the database...?
Guys, please stop commenting "Same problem". This issue isn't about a problem (at least not one within Voyager's control). It's about adding documentation to assist devs with getting past this...
Media picker is more than just images, so the proposed solution as-is will not be adequate. However, as @emptynick said, we're open to PRs and can review further there.
Is a "category" a BREAD that you created? If so, you need to add validation rules yourself
Voyager is simply a package installed in a laravel application. The logs would be your laravel.log file
@rickmacgillis, As you've undoubtedly discovered at this point, your prefix is the cause of the error you're getting. Obviously this problem is not unique to you, but I do have...
https://mariadb.com/kb/en/library/identifier-names/#maximum-length That name is 70 characters long. Ours (without the prefix) is 61 characters long. So you'd have to limit your prefix to 3 characters to stay within the limit...
There's nothing wrong with the authorize method. You're just missing a step. The authorize method (along with `@can` in the views and a few others) are Authorization mechanisms provided by...