Generate the models and migrations for incoming invoices.

This commit is contained in:
2025-01-18 11:05:58 +01:00
parent f246f80b6b
commit d25a67a109
8 changed files with 310 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class Incomingtax extends Model
{
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'incoming_id',
'taxable_amount',
'amount',
'percentage',
'currency',
];
/**
* Get the incoming invoice this tax belongs to.
*/
public function incoming(): BelongsTo
{
return $this->belongsTo(Incoming::class);
}
}