Skip to content

seo-platform — Architecture Diagram

graph TD
    subgraph Client
        A[React UI Components] --> B[Inertia.js Client]
        B --> C[Zustand State]
        A --> D[Axios HTTP]
    end

    subgraph Server
        E[Web Routes<br/>routes/web.php] --> F[Laravel Controllers<br/>app/Http/Controllers]
        F --> G[Inertia.js Server]
        G --> H[Middleware<br/>Org Scoping & Access]
        F --> I[Eloquent Models]
        I --> J[(SQLite Database)]
        F --> K[Third-Party Integrations<br/>DataForSEO, Google Search]
        H --> F
    end

    Client --> B
    B --> E
    D --> F