Skip to content

Instantly share code, notes, and snippets.

View skadimoolam's full-sized avatar
💻
Check out BestOfLaravel.com

Adi SK skadimoolam

💻
Check out BestOfLaravel.com
View GitHub Profile
@skadimoolam
skadimoolam / console.php
Last active November 15, 2018 10:48
Code snippets for Laravel RSS feed article - https://simplestweb.in/blog/adding-rss-feed-to-your-blog
<?php
use Illuminate\Support\Facades\Storage;
use App\Models\Post;
Artisan::command('generate:feed', function () {
$this->info("Generating RSS Feed");
// It is important that you sort by the latest post
$posts = Post::where('published', true)->latest()->get();