summaryrefslogtreecommitdiff
path: root/workbench/app
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2026-02-10 00:52:22 +0000
committerSam Light <samlight1994@gmail.com>2026-02-10 00:52:22 +0000
commit7088acb9fb48f73325fb11d17903970bb5809131 (patch)
tree11035dda16fe2d163fc54aec68e1386bc8252d2e /workbench/app
parent18e17a0b8d4762bf6eba6483ffa5b93e6d98b22d (diff)
Code format
Diffstat (limited to 'workbench/app')
-rw-r--r--workbench/app/Livewire/OrdersTable.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/workbench/app/Livewire/OrdersTable.php b/workbench/app/Livewire/OrdersTable.php
index 87fb93e..1b15214 100644
--- a/workbench/app/Livewire/OrdersTable.php
+++ b/workbench/app/Livewire/OrdersTable.php
@@ -31,7 +31,7 @@ class OrdersTable extends Table
Column::make('products_count', 'Product Count'),
Column::make('total', 'Total Price')
->slot(fn (Order $r) => new HtmlString(
- '<span style="color:red">£' . number_format((float) $r->total, 2).'</span>'
+ '<span style="color:red">£'.number_format((float) $r->total, 2).'</span>'
)),
];
}