Skip to content

Commit

Permalink
Changed amount to quantity for product tables
Browse files Browse the repository at this point in the history
  • Loading branch information
jordythevulder committed Jan 28, 2025
1 parent e708fd4 commit 3af21b0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions lang/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"Address created successfully": "Adres succesvol aangemaakt",
"Address data": "Adresgegevens",
"Already logged in": "Al ingelogd",
"Quantity": "Aantal",
"Amount": "Bedrag",
"Back to account": "Terug naar account",
"Back to cart": "Terug naar winkelwagen",
Expand Down
2 changes: 1 addition & 1 deletion resources/views/account/partials/order/products.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="flex-1 sm:w-[150px]">@lang('Product')</div>
<div class="flex items-center justify-between gap-10 font-medium max-md:hidden max-sm:flex-1 sm:ml-auto">
<div class="w-[60px]">@lang('Price')</div>
<div class="w-16 text-center">@lang('Amount')</div>
<div class="w-16 text-center">@lang('Quantity')</div>
<div class="w-[60px]">@lang('Subtotal')</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/cart/partials/products.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<th class="!pl-0 max-md:hidden"></th>
<th class="text-start">@lang('Product')</th>
<th class="text-start max-md:hidden">@lang('Price')</th>
<th class="!text-center max-md:hidden">@lang('Amount')</th>
<th class="!text-center max-md:hidden">@lang('Quantity')</th>
<th class="text-end max-md:hidden">@lang('Subtotal')</th>
</tr>
</thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="sm:w-[150px]"></div>
<div class="flex-1 sm:w-[150px]">@lang('Product')</div>
<div class="ml-auto w-16 text-center max-md:hidden">
@lang('Amount')
@lang('Quantity')
</div>
</div>
</div>
Expand Down

0 comments on commit 3af21b0

Please sign in to comment.