Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1841654
PlanPackage.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
PlanPackage.php
View Options
<?php
namespace
App
;
use
Illuminate\Database\Eloquent\Relations\Pivot
;
/**
* Link Packages to Plans.
*
* @property int $discount_qty
* @property int $discount_rate
* @property string $plan_id
* @property string $package_id
* @property int $qty
* @property int $qty_max
* @property int $qty_min
* @property \App\Package $package
* @property \App\Plan $plan
*/
class
PlanPackage
extends
Pivot
{
/** @var array<int, string> The attributes that are mass assignable */
protected
$fillable
=
[
'plan_id'
,
'package_id'
,
'qty'
,
'qty_max'
,
'qty_min'
,
'discount_qty'
,
'discount_rate'
];
/** @var array<string, string> The attributes that should be cast */
protected
$casts
=
[
'qty'
=>
'integer'
,
'qty_max'
=>
'integer'
,
'qty_min'
=>
'integer'
,
'discount_qty'
=>
'integer'
,
'discount_rate'
=>
'integer'
];
/**
* Calculate the costs for this package.
*
* @return int The costs in cents
*/
public
function
cost
()
{
$costs
=
0
;
// TODO: consider discount_qty/discount_rate here?
if
(
$this
->
qty_min
>
0
)
{
$costs
+=
$this
->
package
->
cost
()
*
$this
->
qty_min
;
}
elseif
(
$this
->
qty
>
0
)
{
$costs
+=
$this
->
package
->
cost
()
*
$this
->
qty
;
}
return
$costs
;
}
/**
* The package in this relation.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public
function
package
()
{
return
$this
->
belongsTo
(
Package
::
class
);
}
/**
* The plan in this relation.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public
function
plan
()
{
return
$this
->
belongsTo
(
Plan
::
class
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Aug 25, 3:35 PM (1 d, 15 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
218488
Default Alt Text
PlanPackage.php (1 KB)
Attached To
Mode
R2 kolab
Attached
Detach File
Event Timeline
Log In to Comment