Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

16 строки
311B

  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 array $recentCampaigns = [];
  11. public array $campaignsByType = [];
  12. }

Powered by TurnKey Linux.