From ee1511962bbcb8136e11ceaf9f88628970c59359 Mon Sep 17 00:00:00 2001 From: Ludovic CANDELLIER Date: Thu, 24 Nov 2022 16:07:40 +0100 Subject: [PATCH] fix --- app/Datatables/Shop/InvoicesDataTable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Datatables/Shop/InvoicesDataTable.php b/app/Datatables/Shop/InvoicesDataTable.php index 66c4398d..f6b50110 100644 --- a/app/Datatables/Shop/InvoicesDataTable.php +++ b/app/Datatables/Shop/InvoicesDataTable.php @@ -39,8 +39,8 @@ class InvoicesDataTable extends DataTable Column::make('status'), Column::make('created_at')->title('Date'), - Column::make('customer.last_name')->default(''), - Column::make('total'), + Column::make('customer.last_name')->title('Client')->default(''), + Column::make('total')->addClass('text-right'), $this->makeColumnButtons(), ]; }