Sep 27, 2022
0
Level 1
Laravel nova date selection restriction
Hello guys i need to add a rule so that the project end date does not predate the start date
public function fields(NovaRequest $request) { return [ ID::make()->sortable(),
Text::make('Project Name', 'name')
->required(),
Text::make('Description','description'),
Date::make('Project Start Date','start_date')
->rules('required'),
Date::make('Project End Date','end_date')
->rules('required'), // this should not be able to predate start_date
];
}
Please or to participate in this conversation.