Files
project/app/Models/Invoiceitem.php
2025-01-04 14:25:13 +01:00

27 lines
439 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Invoiceitem extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'invoice_id',
'amount',
'discount',
'tax',
'price',
'total',
'name',
'description',
];
}