You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
416 B

  1. <?php
  2. use App\Models\User;
  3. use App\Models\Business;
  4. use App\Project;
  5. use App\Task;
  6. use App\SpentHour;
  7. return [
  8. 'types' => [
  9. User::class => 10,
  10. Business::class => 20,
  11. Project::class => 30,
  12. Task::class => 40,
  13. Spenthour::class => 50,
  14. ],
  15. 'actions' => [
  16. 'created' => 10,
  17. 'updated' => 20,
  18. 'deleted' => 30,
  19. 'restored' => 40,
  20. ],
  21. ];