![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/corals-api/Corals/core/User/Models/ |
<?php namespace Corals\User\Models; use Corals\Foundation\Traits\HashTrait; use Corals\Foundation\Traits\Hookable; use Corals\Foundation\Traits\ModelPropertiesTrait; use Corals\Settings\Traits\CustomFieldsModelTrait; use Spatie\Activitylog\Traits\LogsActivity; use Spatie\Permission\Models\Permission as SpatiePermission; class Permission extends SpatiePermission { use HashTrait, Hookable, LogsActivity, ModelPropertiesTrait, CustomFieldsModelTrait; protected $casts = [ 'properties' => 'json' ]; protected static $logAttributes = ['*']; protected static $logAttributesToIgnore = ['id', 'updated_at', 'created_at', 'deleted_at']; protected static $logOnlyDirty = true; }