Views
The standard views will give you nice and neat fully-featured RSS and Atom feeds.
Customising views
But if you want to customise the output, you can publish the views, and Feedamic will use yours instead:
1php artisan vendor:publish --tag=feedamic-views
These will publish to your resources/views/vendor/mitydigital/feedamic
folder.
Feedamic's views are all written in Blade, not Antlers.
If you want to write your own (and put them somewhere else in your views
folder), go for it: Feedamic uses Statamic's template fieldtype to show all templates within your app.
Take a look at the source to see how our default feeds are written: you'll be interacting with the Feedamic Entry and Feedamic Author here.
Accessing the Entry
Feedamic has its own FeedamicEntry model for each Entry in your feed that gets included in the Blade templates.
You can access the underlying (Statamic) Entry within the FeedamicEntry model, with calls to methods and properties automatically being forwarded to the Entry.
1// forwards the "get" method call to the underlying \Statamic\Entries\Entry object2$feedamicEntry->get('company')