26 lines
632 B
PHP
26 lines
632 B
PHP
<?php
|
|
|
|
namespace App\Domains\Admin\Controllers;
|
|
|
|
use App\Models\Tenant;
|
|
use App\Scopes\CommonController;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
|
|
class ManagedTenantImpressUpdateController extends CommonController
|
|
{
|
|
public function __invoke(string $slug, Request $request): JsonResponse
|
|
{
|
|
$tenant = Tenant::where('slug', $slug)->firstOrFail();
|
|
|
|
$tenant->update([
|
|
'impress_text' => $request->input('impress_text'),
|
|
]);
|
|
|
|
return response()->json([
|
|
'status' => 'success',
|
|
'message' => 'Impressum wurde gespeichert.',
|
|
]);
|
|
}
|
|
}
|