19 lines
416 B
PHP
19 lines
416 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KupShop\PreordersBundle\Translations;
|
|
|
|
use KupShop\I18nBundle\Translations\BaseTranslation;
|
|
|
|
class PreordersDatesTranslation extends BaseTranslation
|
|
{
|
|
protected $tableName = 'preorders_dates';
|
|
protected $tableAlias = 'pd';
|
|
|
|
protected $columns = [
|
|
'date_shipment' => ['alias' => 'Datum expedice'],
|
|
'description' => ['alias' => 'Popis'],
|
|
];
|
|
}
|