Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

20 řádky
467B

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\ViewModels;
  4. class HomeIndexViewModel
  5. {
  6. public int $totalCampaignTypes = 0;
  7. public int $totalCampaigns = 0;
  8. public int $totalJobTypes = 0;
  9. public int $totalJobs = 0;
  10. public int $totalCustomerTypes = 0;
  11. public int $totalCustomers = 0;
  12. public array $recentCampaigns = [];
  13. public array $campaignsByType = [];
  14. public array $recentCustomers = [];
  15. public array $customersByType = [];
  16. }

Powered by TurnKey Linux.