Add practitioners admin and staff-scoped Care UX.
Deploy Ladill Care / deploy (push) Successful in 43s

Hospital admins can manage assignable doctors and invite team members
from Ladill mailboxes; invited staff only see Care tools they need.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-14 21:59:39 +00:00
co-authored by Cursor
parent 898275ec05
commit 3a7bd14b2b
19 changed files with 684 additions and 18 deletions
+35 -2
View File
@@ -6,10 +6,12 @@ use App\Http\Controllers\Controller;
use App\Http\Controllers\Care\Concerns\ScopesToAccount;
use App\Models\Branch;
use App\Models\Member;
use App\Models\Practitioner;
use App\Services\Care\AuditLogger;
use App\Services\Identity\IdentityTeamClient;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Str;
use Illuminate\View\View;
class MemberController extends Controller
@@ -43,21 +45,30 @@ class MemberController extends Controller
]);
}
public function create(Request $request): View
public function create(Request $request, IdentityTeamClient $identity): View
{
$this->authorizeAbility($request, 'admin.members.manage');
$organization = $this->organization($request);
$owner = $this->ownerRef($request);
$branches = Branch::owned($this->ownerRef($request))
$branches = Branch::owned($owner)
->where('organization_id', $organization->id)
->where('is_active', true)
->orderBy('name')
->get();
$mailboxOptions = [];
try {
$mailboxOptions = $identity->mailboxOptions($owner);
} catch (\Throwable) {
// Identity optional for form rendering.
}
return view('care.admin.members.create', [
'organization' => $organization,
'branches' => $branches,
'roles' => config('care.roles'),
'mailboxOptions' => $mailboxOptions,
]);
}
@@ -71,6 +82,9 @@ class MemberController extends Controller
'email' => ['required', 'email', 'max:255'],
'role' => ['required', 'string', 'in:'.implode(',', array_keys(config('care.roles')))],
'branch_id' => ['nullable', 'integer', 'exists:care_branches,id'],
'create_practitioner' => ['sometimes', 'boolean'],
'practitioner_name' => ['nullable', 'string', 'max:255'],
'specialty' => ['nullable', 'string', 'max:255'],
]);
$email = strtolower(trim($validated['email']));
@@ -106,6 +120,25 @@ class MemberController extends Controller
AuditLogger::record($owner, 'member.invited', $organization->id, $owner, Member::class, $member->id);
$createPractitioner = $request->boolean('create_practitioner', $validated['role'] === 'doctor');
if ($createPractitioner) {
$name = trim((string) ($validated['practitioner_name'] ?? '')) ?: Str::headline(Str::before($email, '@'));
Practitioner::query()->firstOrCreate(
[
'organization_id' => $organization->id,
'member_id' => $member->id,
],
[
'owner_ref' => $owner,
'branch_id' => $validated['branch_id'] ?? null,
'user_ref' => $email,
'name' => $name,
'specialty' => $validated['specialty'] ?? null,
'is_active' => true,
],
);
}
return redirect()->route('care.members.index')->with('success', 'Invitation sent to '.$email.'.');
}