I have date
$date = '2018-04-20'
//Format 'yyyy-mm-dd'
How i can get string + 1 WORKDAYS like
date('Y-m-d',strtotime("$date + 1 days"));
so the result is '2018-04-23' not '2018-04-21' because it's saturday
note : workdays is monday till friday
Thanks