Files
project/app/Models/Invoiceitem.php
chris 0a4089fe14
Some checks failed
Build project image / Build-and-release-image (push) Failing after 3m1s
Make sorting of invoice items reliable.
2025-08-02 12:12:57 +02:00

29 lines
480 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',
'article_number',
'amount',
'discount',
'tax',
'price',
'total',
'name',
'description',
'sort'
];
}