Travel blog, with the ability to create accounts, add posts and comment. A simple administrative system for users and blog administrators.
Author: Damian Nowak
- Editing content is available only after logging in.
- Possibility to register as a user.
- Possibility to add posts, manage own posts and manage comments for users.
- Possibility to manage all posts and users for administrators.
- Possibility to comment on posts for everyone.
- Based on the
.env.example
file, create the.env
file, and complete the database information. - Retrieve all dependencies with the
composer install
command. - Run the
http://127.0.0.1:8000
page in the browser. - Access to the administrative panel is possible via the address
http://127.0.0.1:8000admin
. The sample database contains theadmin
account with the passwordadmin
, with administrator privileges.
To run the project, it is recommended to use the Laravela server.
- Go to the directory in which the project is located.
- Run the server using the
php artisan serve
command. - In the case of the first application launch, please migrate with the command
php artisan migrate:refresh --seed
. - From now on the blog is available at
http://127.0.0.1:8000
.