Page MenuHomePhorge

License.php
No OneTemporary

Authored By
Unknown
Size
793 B
Referenced Files
None
Subscribers
None

License.php

<?php
namespace App;
use App\Traits\BelongsToTenantTrait;
use Illuminate\Database\Eloquent\Model;
/**
* The eloquent definition of a License
*
* @property int $id The license identifier
* @property string $key The license key
* @property string $type An email address
* @property int $tenant_id Tenant identifier
* @property ?int $user_id User identifier
*/
class License extends Model
{
use BelongsToTenantTrait;
/** @var array<string, string> The attributes that should be cast */
protected $casts = [
'created_at' => 'datetime:Y-m-d H:i:s',
'updated_at' => 'datetime:Y-m-d H:i:s',
];
/** @var array<int, string> The attributes that are mass assignable */
protected $fillable = ['key', 'type', 'tenant_id'];
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 9:58 AM (6 d, 4 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18838192
Default Alt Text
License.php (793 B)

Event Timeline