Refactor components and models:

- 🔥 Removed deprecated `placeholder-pattern` component.
- 🧹 Simplified and cleaned up Blade views by removing unused comments and sections.
- 🗂️ Extracted `SetsCreatedBy` concern for DRY and reused it across models.
- 🔧 Consolidated configuration for Horizon `authorized_nostr_keys`.
- 🧪 Migrated media conversion to use new Spatie enums for clarity.
- ♻️ Replaced repetitive link rendering with dynamic rendering in meetups and services views.
This commit is contained in:
HolgerHatGarKeineNode
2026-06-29 22:20:01 +02:00
parent beaf028c1d
commit a2a640809a
29 changed files with 130 additions and 439 deletions
@@ -6,7 +6,6 @@ use App\Http\Controllers\Controller;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use JoeDixon\Translation\Language;
use JoeDixon\Translation\Translation;
@@ -57,44 +56,4 @@ class LanguageController extends Controller
return response()->json($array);
}
/**
* Store a newly created resource in storage.
*
* @return Response
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*
* @return Response
*/
public function show(Language $language)
{
//
}
/**
* Update the specified resource in storage.
*
* @return Response
*/
public function update(Request $request, Language $language)
{
//
}
/**
* Remove the specified resource from storage.
*
* @return Response
*/
public function destroy(Language $language)
{
//
}
}