Skip to content

Commit

Permalink
Add invoice_date to fillable fields in Invoice model
Browse files Browse the repository at this point in the history
  • Loading branch information
fvaldes0109 authored and samueldsr99 committed Jan 26, 2024
1 parent 6ca958a commit e428586
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/Models/Invoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ class Invoice extends Model
{
use HasFactory;

protected $fillable = [
'invoice_date',
];

public function invoiceLines()
{
// return $this->hasMany(InvoiceLine::class);
Expand Down

0 comments on commit e428586

Please sign in to comment.