Price - show as money but store in cents
I have a column "price" datatype INT
I want to store the price in cents
My form looks like, I'm implementing the money() method:
My table
When saving eg:
£16,584.60
On the DB gets stored 16585 instead of 1658460
How can I have my form show £16,584.60 but when saving store in cents?
Thanks.
Solution:Jump to solution
Filament
Editing records - Resources - Admin Panel - Filament
The elegant TALL stack admin panel for Laravel artisans.
4 Replies
I have added this mutator to my model
Seems to be working but, is it the FilamentPHP way?
Thanks.
Solution
Filament
Editing records - Resources - Admin Panel - Filament
The elegant TALL stack admin panel for Laravel artisans.
mutator is fine but this is more filament way
Thanks, it works... I have updated adding to my Pages / Edit
Thank you