Laravel Blog is a practice project for learning laravel framework. Here I used laravel/ui package for authentication. This project is focused on CRUD system of Categories and Blogs. Blog has image uploading feature and one to many relationship with category. Here I also implemented blog view count.
Please follow the below instruction to run the project.
Clone the repository
git clone git@github.com:AfiaAkterMunni/laravelBlog.gitSwitch to the repo folder
cd laravelBlogInstall all the dependencies using composer
composer installCopy the .env.example file and make the required configuration changes in the .env file
cp .env.example .envGenerate a new application key
php artisan key:generateRun the database migrations (Set the database connection in .env before migrating)
php artisan migrateStart the local development server
php artisan serveYou can now access the server at http://localhost:8000
