mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-13 23:56:47 +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`.
16 lines
255 B
PHP
16 lines
255 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\EmailCampaign;
|
|
|
|
class EmailCampaignController extends Controller
|
|
{
|
|
public function __invoke()
|
|
{
|
|
return EmailCampaign::query()->get();
|
|
}
|
|
|
|
}
|