mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-15 12:16:47 +00:00
✨ 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`.
This commit is contained in:
15
app/Http/Controllers/Api/EmailCampaignController.php
Normal file
15
app/Http/Controllers/Api/EmailCampaignController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user