Save workspace changes

This commit is contained in:
2026-04-18 17:02:56 +02:00
parent f02ea9a711
commit 87d60af5a9
4220 changed files with 1388603 additions and 1554 deletions

View File

@@ -0,0 +1,47 @@
<?php
declare(strict_types=1);
namespace App\Http\Controllers\Web;
use App\Http\Controllers\Controller;
use App\Support\Seo\SeoFactory;
use Illuminate\Http\Request;
use Inertia\Inertia;
use Inertia\Response;
final class GroupHelpPageController extends Controller
{
public function __invoke(Request $request): Response
{
$canonical = route('help.groups');
$seo = app(SeoFactory::class)
->collectionPage(
'Groups Guide, Help, and Best Practices — Skinbase',
'Learn how Groups work on Skinbase Nova, how shared publishing preserves contributor credit, and how to manage roles, releases, reviews, projects, and team workflows with confidence.',
$canonical,
)
->toArray();
$seo['og_type'] = 'article';
return Inertia::render('Group/GroupHelpPage', [
'title' => 'Groups Help & Guide',
'description' => 'Everything creators need to understand Groups, publish collaboratively, preserve contributor credit, and build a healthy shared identity on Skinbase Nova.',
'seo' => $seo,
'links' => [
'groups_directory' => route('groups.index'),
'create_group' => route('studio.groups.create'),
'group_studio' => route('studio.groups.index'),
'quickstart' => route('help.groups.quickstart'),
'faq' => route('help.groups.faq'),
'contact_support' => route('contact.show'),
'report_issue' => route('bug-report'),
'help_home' => route('help'),
],
'auth' => [
'signed_in' => $request->user() !== null,
],
])->rootView('collections');
}
}