php
Select::make('date_format')
->options([
'm/d/Y' => date('m/d/Y'), // Key is the format, value is the formatted date
'n/j/y' => date('n/j/y'),
'F j, Y' => date('F j, Y'),
'M j, Y' => date('M j, Y'),
])
->default('m/d/Y') // Set the key as the default, which corresponds to the formatted date
->label('Date Format'),
php
Select::make('date_format')
->options([
'm/d/Y' => date('m/d/Y'), // Key is the format, value is the formatted date
'n/j/y' => date('n/j/y'),
'F j, Y' => date('F j, Y'),
'M j, Y' => date('M j, Y'),
])
->default('m/d/Y') // Set the key as the default, which corresponds to the formatted date
->label('Date Format'),