Add patient SMS/email messaging and fix Meet video visit errors.
Deploy Ladill Care / deploy (push) Successful in 43s
Deploy Ladill Care / deploy (push) Successful in 43s
Wire Care to Ladill SMS and Bird management APIs on the patient page, and surface Meet auth/config failures as friendly validation errors instead of a 502 page. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -17,6 +17,7 @@ use App\Http\Controllers\Care\InvestigationTypeController;
|
||||
use App\Http\Controllers\Care\MemberController;
|
||||
use App\Http\Controllers\Care\OnboardingController;
|
||||
use App\Http\Controllers\Care\PatientController;
|
||||
use App\Http\Controllers\Care\PatientMessageController;
|
||||
use App\Http\Controllers\Care\PrescriptionController;
|
||||
use App\Http\Controllers\Care\QueueController;
|
||||
use App\Http\Controllers\Care\ProController;
|
||||
@@ -57,6 +58,8 @@ Route::middleware(['auth', 'platform.session'])->group(function () {
|
||||
Route::get('/patients/create', [PatientController::class, 'create'])->name('care.patients.create');
|
||||
Route::post('/patients', [PatientController::class, 'store'])->name('care.patients.store');
|
||||
Route::get('/patients/{patient}', [PatientController::class, 'show'])->name('care.patients.show');
|
||||
Route::post('/patients/{patient}/email', [PatientMessageController::class, 'sendEmail'])->name('care.patients.email');
|
||||
Route::post('/patients/{patient}/sms', [PatientMessageController::class, 'sendSms'])->name('care.patients.sms');
|
||||
Route::get('/patients/{patient}/edit', [PatientController::class, 'edit'])->name('care.patients.edit');
|
||||
Route::put('/patients/{patient}', [PatientController::class, 'update'])->name('care.patients.update');
|
||||
Route::delete('/patients/{patient}', [PatientController::class, 'destroy'])->name('care.patients.destroy');
|
||||
|
||||
Reference in New Issue
Block a user