Page MenuHomePhorge

PlanPackage.php
No OneTemporary

Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None

PlanPackage.php

<?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
{
protected $fillable = [
'plan_id',
'package_id',
'qty',
'qty_max',
'qty_min',
'discount_qty',
'discount_rate'
];
protected $casts = [
'qty' => 'integer',
'qty_max' => 'integer',
'qty_min' => 'integer',
'discount_qty' => 'integer',
'discount_rate' => 'integer'
];
/**
* Calculate the costs for this plan.
*
* @return integer
*/
public function cost()
{
$costs = 0;
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('App\Package');
}
/**
* The plan in this relation.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function plan()
{
return $this->belongsTo('App\Plan');
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 10:30 AM (1 d, 19 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
12/5c/ca26c7d52e0414e5b65cbe7577d1
Default Alt Text
PlanPackage.php (1 KB)

Event Timeline