32 lines
552 B
PHP
Executable File
32 lines
552 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Price extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'priceable',
|
|
'price_group_id',
|
|
'price_gross',
|
|
'price_net',
|
|
'has_tax',
|
|
'discount_type',
|
|
'discount_percentage',
|
|
'discount_absolute',
|
|
|
|
'created_by',
|
|
'updated_by',
|
|
'deleted_by',
|
|
];
|
|
|
|
public function priceable()
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
}
|