Laravel - Controllers
Given this controller method in Laravel:
What will be the output if called with
public function greet($name) {
return "Hello, " . $name . "!";
}What will be the output if called with
$controller->greet('Anna')?