How to set $defaultDateDisplayFormat in service provider?
In
vendor/filament/tables/src/Table.php
there are a couple of static values which configure how the date of TextColumns is formatted by default. Can these formats be overwritten?Solution:Jump to solution
As it's a static property I think
Table::$defaultDateDisplayFormat = 'your-format';
should do it?2 Replies
Solution
As it's a static property I think
Table::$defaultDateDisplayFormat = 'your-format';
should do it?Thank you I ended up with this: