Implement dark mode, bug report page, and schema dump

This commit is contained in:
2025-11-27 15:06:45 +08:00
parent 13bc6db529
commit 83602b1ed1
91 changed files with 1078 additions and 2291 deletions

View File

@@ -11,6 +11,12 @@ class ChartOfAccount extends Model
{
use HasFactory;
public const TYPE_INCOME = 'income';
public const TYPE_EXPENSE = 'expense';
public const TYPE_ASSET = 'asset';
public const TYPE_LIABILITY = 'liability';
public const TYPE_NET_ASSET = 'net_asset';
protected $fillable = [
'account_code',
'account_name_zh',