Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
21 lines
320 B
PHP
21 lines
320 B
PHP
<?php
|
|
|
|
namespace App\ExportResources\User;
|
|
|
|
use App\ExportResources\ExportResource;
|
|
|
|
class Module extends ExportResource
|
|
{
|
|
protected $columns = [
|
|
'key',
|
|
'translation_key',
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
|
|
protected $properties = [
|
|
'active',
|
|
'delible',
|
|
];
|
|
}
|