innoboxrr / make-bridge
Puente de comunicación entre una app y make
Requires
None
Requires (Dev)
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-08-22 18:27:42 UTC
README
Talk to Make (Integromat) from Laravel, both directions.
Trigger Make scenarios from your application, and receive their results back — without hand-rolling webhook plumbing and signature checks every time.
// Fire a scenario and pass it data. MakeBridge::scenario('onboarding')->trigger([ 'user_id' => $user->id, 'plan' => 'pro', ]);
// Receive results as a normal Laravel event. class ScenarioCompleted { public function handle(MakeScenarioResult $result) { /* ... */ } }
Why
Make is excellent at the messy integrations you do not want in your codebase — the CRM, the spreadsheet, the notification chain that marketing keeps changing. The awkward part is the boundary: authenticating both ways, validating payloads, and not letting a broken scenario take down a request.
This package is that boundary.
| Outbound | Trigger scenarios synchronously or queued |
| Inbound | Signed webhook endpoint with payload validation |
| Events | Scenario results arrive as Laravel events |
| Retries | Failed triggers retry with backoff instead of vanishing |
Install
composer require innoboxrr/make-bridge php artisan vendor:publish --tag=make-bridge-config
MAKE_API_TOKEN=... MAKE_WEBHOOK_SECRET=...
Part of Innobox R&R — 52 open-source packages extracted from production work. innobox.systems