在 Laravel 背包中 - 如何使用 addColumn 将列右对齐

In Laravel Backpack - How to align a column to the right using addColumn

有代表价格的数字列。如何在 table 网格中将其右对齐。 我累了

$this->crud->addColumn([
            'name' => 'amount',
            'type' => 'number',
            'label' => 'Amount',
            'align' => 'right',
        ]);

嗯...我认为没有办法用现有的列来做到这一点。但实现它的快速方法是 create your own column type, say... number_aligned_right, based on the code for the numbers column.

2018 年没有办法,但在 2021 年我可以使用这样的包装器将列右对齐:

$this->crud->addColumn([
    'name' => 'amount',
    'type' => 'number',
    'label' => 'Amount',
    'wrapper' => [
        'element' => 'span',
        'style' => 'float:right',
    ],
]);