feat(admin): 客服中心工单骨架(模型/迁移/路由/菜单/页面)

This commit is contained in:
萝卜
2026-03-15 08:44:02 +00:00
parent 0bd21f8715
commit 62d7a81df3
8 changed files with 203 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SupportTicket extends Model
{
protected $fillable = [
'scope',
'scope_id',
'merchant_id',
'buyer_id',
'order_id',
'platform_order_id',
'site_subscription_id',
'platform_lead_id',
'ticket_no',
'category',
'priority',
'status',
'subject',
'content',
'assigned_admin_id',
'closed_at',
];
protected $casts = [
'closed_at' => 'datetime',
];
}