Page MenuHomePhorge

License.php
No OneTemporary

Authored By
Unknown
Size
787 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 list<string> The attributes that are mass assignable */
protected $fillable = ['key', 'type', 'tenant_id'];
}

File Metadata

Mime Type
text/x-php
Expires
Sat, Apr 4, 3:11 AM (20 h, 53 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a7/37/3a4cf3191bb155b9c974c8a5fb36
Default Alt Text
License.php (787 B)

Event Timeline