Im Using This Code In my Local Laravel and in success
public function dateForHuman($custom_timestamp)
{
$date = bcsub($custom_timestamp, 25569, 10) * 86400;
return date('Y-m-d H:i:s', $date);
}
but When i try in my server, respond error Undefined Function bcsub()