Level 1
I'm using FormRequest, so, this is what I did:
public function messages()
{
return [
'after' => 'A :attribute deve ser uma data posterior a '
. $this->project->start_date->format('d/m/Y'),
];
}
It works, but I'm still open to sugestions.