47 lines
1.7 KiB
PHP
47 lines
1.7 KiB
PHP
<?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');
|
|
}
|
|
} |