背包管理员:图像列类型

时间:2017-10-05 18:55:49

标签: php laravel backpack-for-laravel

我正在与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中,然后添加了该列,但无法使其正常工作。

我猜测应该是模型中的变种器,但不知道如何写它。

1 个答案:

答案 0 :(得分:1)

我找到了它描述如何add a column in the documentation

的地方