Laravel's Blog is a dynamic blog site which is built using Laravel 5.8 framework.This project was built my me covering the udemy course.It will be helpful for those who wants to start learning 🔰 and understand the features of Laravel framework.
- Download wamp: http://www.wampserver.com/en/
- Download and extract cmder mini: https://github.com/cmderdev/cmder/releases/download/v1.1.4.1/cmder_mini.zip
- Update windows environment variable path to point to your php install folder (inside wamp installation dir) (here is how you can do this http://stackoverflow.com/questions/17727436/how-to-properly-set-php-environment-variable-to-run-commands-in-git-bash)
cmder will be refered as console
-
Create a database locally named 'whatever you want'
-
Download composer https://getcomposer.org/download/
-
Pull this project using command below
git clone https://github.com/mefalamin/blog-dev- Go to the directory
cd blog-dev-
Rename .env.example file to .envinside your project root and fill the database information. (windows wont let you do it, so you have to open your console cd your project root directory and run mv .env.example .env )
-
Install packages using composer
composer install- Generate a key for the application
php artisan key:generate- Run the database migration
php artisan migrate- Seed the database
php artisan db:seed- Finally fire up the server
php artisan serve#####You can now access the application at localhost:8000 👍
The main site template is for personal use only.If you want to use it commercially please buy and support the developers.The rest of the code used in this application is free 😊