iLeben is a full-stack real estate sales platform that handles everything from project and plant catalog management to payment processing and Salesforce synchronization. It ships a Filament 5 admin panel for operations teams, a versioned REST API for frontend integrations, and a React 19 catalog frontend — all in a single Laravel 12 application.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/scooller/Leben-site/llms.txt
Use this file to discover all available pages before exploring further.
Quickstart
Install iLeben and get a working development environment in minutes.
Architecture
Understand how the backend, API, frontend, and Salesforce sync fit together.
API Reference
Explore every endpoint — catalog, checkout, payments, and more.
Payments
Integrate Transbank, Mercado Pago, or manual bank-transfer payments.
What’s Inside
iLeben bundles all the infrastructure a real estate sales operation needs:Admin Panel
Filament 5 CRUD for projects, plants, users, contacts, short links, and global settings.
Salesforce Integration
Bidirectional sync of projects, plants, advisors, and leads via OAuth WebServer flow.
Catalog API
Public endpoints for filtering projects and plants with pricing and availability.
Operations
Deploy to cPanel, manage the scheduler and queue worker, and monitor logs.
Get Started
Install dependencies
Clone the repo, run
composer install and npm install inside frontend/, then copy .env.example to .env and generate an app key.Configure environment
Set database credentials, Salesforce OAuth keys, and payment gateway tokens in
.env. Run php artisan migrate to create all tables.Build the frontend
Run
npm run build inside frontend/ to compile the React 19 + Web Awesome Pro catalog app.See the Quickstart for the full step-by-step installation guide, including cPanel symlink setup and storage permissions.