helpers.php 335 B

12345678910111213141516
  1. <?php
  2. function getCards()
  3. {
  4. return \App\Models\Card::where('enabled', true)->orderBy('name')->get();
  5. }
  6. function getCategories()
  7. {
  8. return \App\Models\Category::where('enabled', true)->where('parent_id', null)->orderBy('name')->get();
  9. }
  10. function formatPrice($price)
  11. {
  12. return "€ " . number_format($price, 2, ",", ".");
  13. }