Some checks failed
Build project image / Build-and-release-image (push) Failing after 3m1s
29 lines
480 B
PHP
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'
|
|
];
|
|
|
|
}
|