22 lines
364 B
PHP
22 lines
364 B
PHP
<?php
|
|
|
|
namespace Peidikeji\Goods\Form;
|
|
|
|
use Dcat\Admin\Form\Field;
|
|
|
|
class Spec extends Field
|
|
{
|
|
protected $view = 'peidikeji.dcat-admin-extension-goods::form.spec';
|
|
|
|
protected $variables = [
|
|
'headers' => []
|
|
];
|
|
|
|
public function header(array $headers)
|
|
{
|
|
$this->addVariables(['headers' => $headers]);
|
|
|
|
return $this;
|
|
}
|
|
}
|