I'm new to Laravel 4 and I'm stuck already... I can't seem to get my head around routes.
I keep getting this error, when I go to the following URL account/welcome/Scott/UK:
Missing argument 2 for Illuminate\Routing\Controller::missingMethod()
This is what is in my routes file:
Route::controller('account', 'AccountController');
And this is in my controller:
public function action_welcome($name, $place)
{
echo "Welcome to {$place}, {$name}!";
}
Can anyone shed any light on this? It must be something really simple.