Skip to content

Instantly share code, notes, and snippets.

@twmbx
Forked from fhferreira/routes.php
Created January 4, 2018 10:23
Show Gist options
  • Save twmbx/6e82409730e2f3ff7743405ee87fe6eb to your computer and use it in GitHub Desktop.
Save twmbx/6e82409730e2f3ff7743405ee87fe6eb to your computer and use it in GitHub Desktop.
Logout of Auth Basic on Laravel
<?php
Route::get('logout-basic', function() {
return Redirect::to(preg_replace("/:\/\//", "://log-me-out:fake-pwd@", url('/')));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment