> */ protected static $formats = [ ['carbon_format' => 'Y M d', 'moment_format' => 'YYYY MMM DD'], ['carbon_format' => 'd M Y', 'moment_format' => 'DD MMM YYYY'], ['carbon_format' => 'd/m/Y', 'moment_format' => 'DD/MM/YYYY'], ['carbon_format' => 'd.m.Y', 'moment_format' => 'DD.MM.YYYY'], ['carbon_format' => 'd-m-Y', 'moment_format' => 'DD-MM-YYYY'], ['carbon_format' => 'm/d/Y', 'moment_format' => 'MM/DD/YYYY'], ['carbon_format' => 'Y/m/d', 'moment_format' => ' YYYY/MM/DD'], ['carbon_format' => 'Y-m-d', 'moment_format' => 'YYYY-MM-DD'], ]; public static function get_list() { return array_map( fn (array $layout) => [ 'display_date' => Carbon::now()->translatedFormat($layout['carbon_format']), 'carbon_format_value' => $layout['carbon_format'], 'moment_format_value' => $layout['moment_format'], ], static::$formats ); } }