This method decodes a Base64-encoded string back to its original form.
$string = 'SGVsbG8gd29ybGQ='; $string = SM::fromBase64($string); // or $string = SM::make($string) ->fromBase64(); echo $string; // Hello world