mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
- 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`.
18 lines
253 B
PHP
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;
|
|
}
|
|
}
|