I am getting date from user on Laravel application from three different selects i.e. dd(1-31) mm(1-12) yyyy(1905-2016)
How do I convert it to php date and insert it into mysql column created by Laravel migrations using fol code:
$table->date('dateOfBirth')->nullable();
also, i want to validate the date using Laravel validator after composing it.