Give a tool that can read a feed or rss, user can register it and bookmark articles to read late. It's also implement cache that help a lot of processing and performance. You can modify time cache at config/blog_feed.php
- MySQL
- PHP
- APACHE/NGINX
- composer
composer install
php artisan key:generator
php artisan migrate
- Create database
- Paste database name at .env file
- add this line into config/app, into services array
App\Providers\RssReaderServiceProvider::class,
- You can register user and Try
- list all feed register, default user id = 1. user can modify it at file config
php artisan feed:list
- Read current feed
php artisan feed:read {id} # id of feed or url
- Add new feed
php artisan feed:add {url} --title # id of feed or url
- Remove new feed
php artisan feed:remove {id} # id of feed or url