Quickblog is a laravel package for creating quick and fast blog for your application, It includes:
- Auth config to restrict pages
- Categories
- Tags
- Blog view that can be customized to your desire and
- Blog banner upload
composer require devanny/quickblog
php artisan vendor:publish --provider="Devanny\QuickBlog\QuickBlogServiceProvider" --tag="blog"
php artisan migrate
php artisan storage:link
*** if you will be using authentication.. open config/quickblog and change auth value to 'Auth' ***
config/quickblog.php
//default
'auth' => '',
//with authentication
'auth' => 'Auth',
/posts - Get all blog posts
/categories - Get all Categories and create new category
/tags - Get all Tags and create new tag
- Non yet
The library is open-sourced software licensed under the MIT license.