我正在与Laravel Backpack图像列类型挣扎。 documentation给出了一个例子:
[
'name' => 'profile_image', // The db column name
'label' => "Profile image", // Table column heading
'type' => 'image',
// optional width/height if 25px is not ok with you
// 'height' => '30px',
// 'width' => '30px',
]
但我不知道我应该把它放在哪里。我猜测并把它放在$this->crud->setColumns
中,然后添加了该列,但无法使其正常工作。
我猜测应该是模型中的变种器,但不知道如何写它。