<?php

namespace {Module}\PanelSections;

use Botble\Base\PanelSections\PanelSection;

class {Name}PanelSection extends PanelSection
{
    public function setup(): void
    {
        $this
            ->setId('settings.{id}')
            ->setTitle('{title}')
            ->withItems([
                //
            ]);
    }
}
