我正在为我的一个项目使用laravel背包。我被困在一个地方,在数据列表中,描述栏显示了列中有限的单词。我想在列表列中显示完整的描述。
$this->crud->addColumn([
'label' => "Message",
'type' => 'text',
'name' => 'message'
]);
答案 0 :(得分:2)
您应该可以使用'limit' => 20000
执行此操作。这是该字段的定义from the docs:
[
'name' => 'name', // The db column name
'label' => "Tag Name", // Table column heading
// 'prefix' => "Name: ",
// 'suffix' => "(user)",
// 'limit' => 120, // character limit; default is 80;
],
希望它有所帮助。干杯!