Skip to content
This repository was archived by the owner on Feb 18, 2022. It is now read-only.

test basic features

Ali Irawan edited this page Jan 2, 2019 · 1 revision

Make sure you have go through the Getting Started

We cover some basic routes:

  • /xtra-login - the login page
  • /xtra-home - the restricted home page
  • /xtra-logout - logout function

Run your laravel app

php artisan serve

Try to access the home page

http://localhost:8000/xtra-home

You will be redirected to login page, because the home page is restricted for authenticated users only Try to login with your users data (You need to make sure, your users table contains data for this to work)

If you login successfully, you will be redirected to the home page Then you can try to logout, from the user menu on the top of page The Logout menu, will go to /xtra-logout route, log you out, and then redirect to login page

Clone this wiki locally