mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-17 12:54:22 +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:
@@ -5,6 +5,14 @@ use Livewire\Volt\Volt;
|
||||
|
||||
Route::redirect('/', 'welcome');
|
||||
|
||||
Route::get('/img/{path}', \App\Http\Controllers\ImageController::class)
|
||||
->where('path', '.*')
|
||||
->name('img');
|
||||
|
||||
Route::get('/img-public/{path}', \App\Http\Controllers\ImageController::class)
|
||||
->where('path', '.*')
|
||||
->name('imgPublic');
|
||||
|
||||
Volt::route('welcome', 'welcome')->name('welcome');
|
||||
|
||||
Route::get('stream-calendar', \App\Http\Controllers\DownloadMeetupCalendar::class)
|
||||
|
||||
Reference in New Issue
Block a user