Steps to setup the Project: 
-- Here are some steps to setup the project in your localhost

    Step-1: User migration table contains name(user-name), email, password and user's first and last name, with created and updated at fields.

    Step-2: Now, to initiate migration run command : "php artisan migrate"

    Step-3: Now, run command : "php artisan db:seed" to create first user (Admin)

    Step-4: Then , run command : "php artisan optimize:clear" for clearing the cache and cofig data.

    Step-5: Then run command : "php artisan serve" to run and test the project.


    Note: To import new migration again please follow below steps:

    Step-1: Run command "php artisan db:wipe" to truncate or drop all tables from database.

    Step-2: Then again follow from "Step-2" mentioned above.