mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-19 13:20:16 +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:
18
config/model-status.php
Normal file
18
config/model-status.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
* The class name of the status model that holds all statuses.
|
||||
*
|
||||
* The model must be or extend `Spatie\ModelStatus\Status`.
|
||||
*/
|
||||
'status_model' => Spatie\ModelStatus\Status::class,
|
||||
|
||||
/*
|
||||
* The name of the column which holds the ID of the model related to the statuses.
|
||||
*
|
||||
* You can change this value if you have set a different name in the migration for the statuses table.
|
||||
*/
|
||||
'model_primary_key_attribute' => 'model_id',
|
||||
];
|
||||
Reference in New Issue
Block a user