File: D:/HostingSpaces/SBogers10/shop.komma.nl/app/Shipments/ShipmentSection.php
<?php
namespace App\Shipments;
use Komma\KMS\Core\Attributes\Models\SelectOption;
use Komma\KMS\Core\Attributes\Select;
use Komma\KMS\Core\Attributes\TextArea;
use Komma\KMS\Core\Attributes\TextField;
use Komma\KMS\Core\Sections\Section;
use Illuminate\Database\Eloquent\Model;
class ShipmentSection extends Section
{
/**
* Generates the attributes for this section. They all must extend the App\Kms\Core\Attributes\Attribute class
* This is the place where you need to setup your sections appearance. Just make sure you build an array of attributes
* and put each attribute in a AbstractSectionTabItem with a SectionTabGroups constant to link them to a tab.
*
* @see PageRepository::saveModel()
* @param Model $currentModel
* @return void A collection of SectionTabItems
*/
public function defineAttributesAndTabs(Model $currentModel = null): void
{
}
}