iam using laravel 4 ,am trying to pass a variable to a redirect back
return Redirect::back()->with('message','Message has been sent',compact('account','pageTitle'));
like you would have done with a Viewreturn Redirect::back()->with('message','Message has been sent',compact('account','pageTitle'));
is that posssible ??.