Files
einundzwanzig-app/app/Support/CustomFeedItem.php
HolgerHatGarKeineNode efe44cf344 Add storage configuration, localization updates, and feed generation
- Added `publicDisk` configuration to `filesystems.php`.
- Expanded locale translations in `es.json` and `de.json`.
- Implemented RSS, Atom, and JSON feed views.
- Added `feed.php` configuration for feed generation.
- Introduced `ImageController` for image handling.
- Updated application routing to include `api.php`.
2025-11-21 16:23:55 +01:00

18 lines
253 B
PHP

<?php
namespace App\Support;
use Spatie\Feed\FeedItem;
class CustomFeedItem extends FeedItem
{
protected string $content;
public function content(string $content): self
{
$this->content = $content;
return $this;
}
}