Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

36 rindas
1.1KB

  1. @extends('layout')
  2. @includes('includes/small-feature')
  3. <div class="container mx-auto px-8 py-8 md:py-16">
  4. <div class="flex justify-between items-center">
  5. <h1 class="text-3xl font-bold">
  6. Items
  7. </h1>
  8. @if($canManage)
  9. <a href="{{ $createAction }}" class="bg-indigo-500 rounded-lg p-2 text-white">
  10. Add item
  11. </a>
  12. @endif
  13. </div>
  14. @if(count($items) === 0)
  15. <p class="text-gray-500 my-4">No items yet.</p>
  16. @endif
  17. <ul class="my-4 space-y-2">
  18. @foreach($items as $item)
  19. <li class="
  20. rounded-lg p-4 flex justify-between items-center
  21. @if($item->isLowStock) bg-red-50 @endif
  22. @if(!$item->isLowStock) bg-gray-50 @endif
  23. ">
  24. <a href="{{ $item->route }}" class="font-bold underline">
  25. {{ $item->sku }} &mdash; {{ $item->name }}
  26. </a>
  27. <span class="@if($item->isLowStock) text-red-500 @endif">
  28. {{ $item->totalQuantity }} units
  29. </span>
  30. </li>
  31. @endforeach
  32. </ul>
  33. </div>

Powered by TurnKey Linux.