Display AM/PM in DateTimePicker when native(false)
Is it possible to display the datetime in the picker itself in 12 format?
1 Reply
I found this but closed :/
https://github.com/filamentphp/filament/pull/6441
GitHub
Feature: add AM/PM support for DateTimePicker & TimePicker by sumar...
use Filament\Forms\Components\DateTimePicker;
DateTimePicker::make('start_date')->hourMode(12);
Dark mode:
Default is 24-hour mode.
use Filament\Forms\Components\DateTimePicker;
Da...