问题
If the column data has approximately more than 50 characters the column gets truncated at around 50.
addColumn function has 'type' => 'text'
In the end there is [...]
This is both in the details pop-up and XLS download.
Question is, can this limit be increased from any configuration?
回答1:
Yes, you can! There is a limit
option on the column for that.
$this->crud->addColumns([
[
'name' => 'name',
'label' => 'Name',
'type' => 'text',
'limit' => 150,
],
...
]);
来源:https://stackoverflow.com/questions/52355899/in-laravel-backpack-column-data-in-view-details-and-xls-download-is-truncated