Files
sam-manage/app/Models/Finance/VatRecord.php
김보곤 e272f16357 feat: [database] codebridge DB connection 적용 (merge 후 재적용)
- 78개 MNG 전용 모델에 $connection = 'codebridge' 재적용
- config/database.php codebridge connection 포함
2026-03-07 11:28:47 +09:00

41 lines
803 B
PHP

<?php
namespace App\Models\Finance;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class VatRecord extends Model
{
use SoftDeletes;
protected $table = 'vat_records';
protected $fillable = [
'tenant_id',
'period',
'type',
'tax_type',
'partner_name',
'invoice_no',
'invoice_date',
'supply_amount',
'vat_amount',
'total_amount',
'status',
'memo',
];
protected $casts = [
'invoice_date' => 'date',
'supply_amount' => 'integer',
'vat_amount' => 'integer',
'total_amount' => 'integer',
];
public function scopeForTenant($query, $tenantId)
{
return $query->where('tenant_id', $tenantId);
}
}