Files
yuezi-saas/backend/app/Http/Controllers/Admin/Care/CarePlanController.php
T
li 16bcd9bcf0 feat: 第二阶段核心业务模块(CRM/房务/护理/月子餐)
后端:
- 4个迁移文件新增23张业务表
- 23个Eloquent Model(含关联/类型转换/门店隔离)
- 20个Controller(含CRUD+业务操作: 合同审核/入住退房/护理异常处理等)
- 110+条API路由(crm/room/care/meal四大前缀)

前端:
- 4个API模块(crm.js/room.js/care.js/meal.js)
- 13个业务页面(线索/客户/合同/渠道/投诉/房型/房间/预定/护理档案/护理计划/护理记录/菜品/排餐)
2026-03-13 20:18:29 +08:00

60 lines
2.0 KiB
PHP

<?php
namespace App\Http\Controllers\Admin\Care;
use App\Http\Controllers\Controller;
use App\Models\Care\CarePlan;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class CarePlanController extends Controller
{
public function index(Request $request): JsonResponse
{
$query = CarePlan::query()->with(['profile.customer', 'nurse']);
$query->when($request->care_profile_id, fn($q, $v) => $q->where('care_profile_id', $v));
$query->when($request->plan_date, fn($q, $v) => $q->whereDate('plan_date', $v));
$query->when($request->nurse_id, fn($q, $v) => $q->where('nurse_id', $v));
$query->when($request->has('status'), fn($q) => $q->where('status', $request->status));
return $this->paginate($query->latest()->paginate($request->input('per_page', 15)));
}
public function store(Request $request): JsonResponse
{
$validated = $request->validate([
'care_profile_id' => 'required|exists:care_profiles,id',
'plan_date' => 'required|date',
'stage' => 'nullable|string|max:50',
'items' => 'nullable|array',
'nurse_id' => 'nullable|exists:users,id',
]);
$validated['status'] = 0;
return $this->success(CarePlan::create($validated));
}
public function show(CarePlan $carePlan): JsonResponse
{
return $this->success($carePlan->load(['profile.customer', 'nurse', 'records']));
}
public function update(Request $request, CarePlan $carePlan): JsonResponse
{
$validated = $request->validate([
'plan_date' => 'sometimes|date',
'stage' => 'nullable|string|max:50',
'items' => 'nullable|array',
'nurse_id' => 'nullable|exists:users,id',
'status' => 'sometimes|integer|in:0,1,2',
]);
$carePlan->update($validated);
return $this->success($carePlan);
}
public function destroy(CarePlan $carePlan): JsonResponse
{
$carePlan->delete();
return $this->success(null);
}
}