Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 435 Bytes

UPGRADE.md

File metadata and controls

10 lines (8 loc) · 435 Bytes

Breaking Change V1 - V2


-- no longer customises the DateTime values in the user tables, makes use of Filament core verson.

in your AppServiceProvider add the following to the boot method:

    DateTimePicker::configureUsing(fn (DateTimePicker $component) => $component->timezone(config('app.user_timezone')));
    TextColumn::configureUsing(fn (TextColumn $column) => $column->timezone(config('app.user_timezone')));