I wonder if there is anyway to format the numeric value of Laravel validation messages. For example, the validation rule 'min':
'min' => [
'numeric' => 'The :attribute must be at least :min.',
'file' => 'The :attribute must be at least :min kilobytes.',
'string' => 'The :attribute must be at least :min characters.',
'array' => 'The :attribute must have at least :min items.',
],
My value of ':min' is 50000. I want to display it with thousand separator 50,000. Is there any ideas?