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
25 lines
416 B
<?php
|
|
|
|
use App\Models\User;
|
|
use App\Models\Business;
|
|
use App\Project;
|
|
use App\Task;
|
|
use App\SpentHour;
|
|
|
|
return [
|
|
|
|
'types' => [
|
|
User::class => 10,
|
|
Business::class => 20,
|
|
Project::class => 30,
|
|
Task::class => 40,
|
|
Spenthour::class => 50,
|
|
],
|
|
|
|
'actions' => [
|
|
'created' => 10,
|
|
'updated' => 20,
|
|
'deleted' => 30,
|
|
'restored' => 40,
|
|
],
|
|
];
|