On logout from my Laravel application using the Laravel logout method:
public function getLogout()
{
Auth::logout();
return Redirect::to(\
This isn't actually what you think it is.
The back button on a browser fetches the last page in its cache for you.
If you must really prevent this, then you have two options:
Personally I'd just blame caching and ignore it. There's also a third option: using the HTML5 history API, but that's probably way over the top.