背包管理员:图像列类型
Backpack Admin: Image Column Type
我正在为 Laravel 背包图像列类型而苦苦挣扎。 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
并添加了该列,但无法正常工作。
我猜模型中应该有一个变元,但不确定如何编写它。
我找到了描述如何 add a column in the documentation
的地方
我正在为 Laravel 背包图像列类型而苦苦挣扎。 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
并添加了该列,但无法正常工作。
我猜模型中应该有一个变元,但不确定如何编写它。
我找到了描述如何 add a column in the documentation
的地方