• Author: Jamie Duffy Creagh
• 5 pages : Home , Blog , Game , Gallery and Log In • Includes 5 Blogs
• Images • Links • Image Grid
• Search Function • Filter Fuinction • Sort Function • Create Post • Delete Post • Edit Post
• Images • Gifs • Embeded youtube video • Cards • On hover methods
• Slide Show set on a 5 second timer • Slider containing Images • Embeded youtube video • Embeded map with Icons
• Input fields • LogIn button
https://www.w3schools.com/howto/howto_css_image_grid_responsive.asp https://www.w3schools.com/howto/howto_js_slideshow.asp https://www.w3schools.com/bootstrap4/bootstrap_cards.asp
Setting up your development environment on your local machine:
git clone git@github.com:codewithdary/laravel-8-complete-blog.git
cd laravel-8-complete-blog
cp .env.example .env
composer install
php artisan key:generate
php artisan cache:clear && php artisan config:clear
php artisan serve
Create a database
mysql
create database laravelblog;
exit;
Setup your database credentials in the .env file
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravelblog
DB_USERNAME={USERNAME}
DB_PASSWORD={PASSWORD}
Migrate the tables
php artisan migrate
Do not hesitate to contribute to the project by adapting or adding features ! Bug reports or pull requests are welcome.