Page MenuHomePhorge

Sku.php
No OneTemporary

Authored By
Unknown
Size
603 B
Referenced Files
None
Subscribers
None
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
/**
* The eloquent definition of a Stock Keeping Unit (SKU).
*/
class Sku extends Model
{
public $incrementing = false;
protected $keyType = 'string';
protected $fillable = [
'title',
'description',
'cost',
'units_free',
'period',
'handler_class',
'active'
];
/**
* List the entitlements that consume this SKU.
*
* @return Entitlement[]
*/
public function entitlements()
{
return $this->hasMany('App\Entitlement');
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 10:30 AM (1 d, 20 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
1d/3f/811b2a37551e95f4d46d50456ae8
Default Alt Text
Sku.php (603 B)

Event Timeline