32 lines
576 B
PHP
32 lines
576 B
PHP
<?php namespace App\Models;
|
|
/**
|
|
* @copyright (c) 2025 Notsoweb Software (https://notsoweb.com) - All Rights Reserved
|
|
*/
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Descripción
|
|
*
|
|
* @author Moisés Cortés C. <moises.cortes@notsoweb.com>
|
|
*
|
|
* @version 1.0.0
|
|
*/
|
|
class SaleDetail extends Model
|
|
{
|
|
protected $fillable = [
|
|
'sale_id',
|
|
'inventory_id',
|
|
'product_name',
|
|
'quantity',
|
|
'unit_price',
|
|
'subtotal',
|
|
];
|
|
|
|
protected $casts = [
|
|
'unit_price' => 'decimal:2',
|
|
'subtotal' => 'decimal:2',
|
|
];
|
|
}
|