defaultColumnWidth
defaultColumnWidth(string $column, string $width)
Set the default column width for the specified column.
Example
$crud->setTable('customers');
$crud->setSubject('Customer', 'Customers');
$crud->columns(['customerName','phone','addressLine1','creditLimit']);
$crud->defaultColumnWidth('customer_name', '500px');
$output = $crud->render();