You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
261B

  1. <?php
  2. namespace App\Http\Controllers\Users;
  3. use Framework\Routing\Router;
  4. class LogOutUserController
  5. {
  6. public function handle(Router $router)
  7. {
  8. session()->forget('user_id');
  9. return redirect($router->route('show-dashboard'));
  10. }
  11. }

Powered by TurnKey Linux.