Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

laravel date rule before 18 years ago

 public function rules()
{
    return 
    [
      ...
      'issued_date' => [
                'required',
                'date_format:' . config('panel.date_format'),
                'after:-18 years'
          ],
      ...
    ];
}
 
PREVIOUS NEXT
Tagged: #laravel #date #rule #years
ADD COMMENT
Topic
Name
8+3 =