A travel agency loses up to 30% of clients because of an outdated site: customers go to competitors where they can pick a tour in a few clicks. According to Travelport, 73% of travelers prefer to book online on sites with fast search. Travelport Digital Traveler Survey. We have built dozens of portals for travel agencies and know how to turn a website into a working sales channel. Our experience: over 8 years, more than 50 completed projects. One client — an agency with 10 managers and a flow of 200 requests per month. Their old WordPress site updated prices manually, requests got lost in emails. After switching to a custom solution, catalog load time dropped from 12 to 1.8 seconds, and conversion increased by 40%.
A travel agency portal is not just a catalog — it's an ecosystem: search with filters, online booking, tourist personal account, CRM for managers, and integration with tour operator systems. Here’s how it works in practice.
What problems we solve
Outdated prices and availability. If tour data updates once a day, you risk selling an already booked hotel. We connect tour operator APIs (TravelLine, Pegas Touristik, Coral Travel) in real time — prices and availability are always current. Custom development is 3 times more efficient than off-the-shelf solutions (e.g., WordPress) for agencies with high load.
Complex search and filters. Tourists want flexible search: dates ±3 days, budget, star rating, meal plan, children with ages. We implement a form with multiple parameters and auto-suggestion.
Low request conversion. The client books in two clicks: selects a tour → clicks 'Book' → pays online or leaves a request for a manager. Minimum steps, maximum sales. The average client check after launching the portal grows by 25%.
How to speed up tour catalog loading?
One key factor is caching API responses. Without it, each request to a tour operator takes up to 3 seconds, and a page loads in 10+ seconds. We set up cache for 5 minutes for popular destinations, and 1 minute for hot deals. Stack: Next.js 14 (React Server Components) for SSR + Laravel 11 with Redis. Example request:
GET /api/tours?from=MOW&to=EGY&checkIn=2025-06-01&nights=7&adults=2&stars=4
Result: catalog loads in under 2 seconds, LCP < 2.5 s, CLS < 0.1.
Why real-time API integration matters?
Tourists often encounter 'tour available in catalog but already sold'. Integration via TravelLine API or direct XML exports from Pegas Touristik updates prices and availability in real time. This eliminates booking rejections and builds trust. In the CRM for managers, requests are processed automatically — saving 3 hours per day on manual work.
How we build the portal: case study
For the same agency, we designed a portal on Next.js (SSR) and Laravel (API). We integrated TravelLine for hotels and Pegas for package tours. The tourist personal account includes vouchers, insurance, payment status. The CRM for managers handles requests, tasks, client history. Booking conversion increased by 40%, catalog load under 2 seconds.
Portal structure
- Tour catalog: package tours (hotel+flight), hotels without flight, hot deals with >20% discount and a timer, excursions.
- Tour card: gallery, hotel description, itinerary, what's included, cancellation conditions, reviews.
Booking and payment
Two scenarios:
- Online payment: full amount or partial deposit. We connect YooKassa or Tinkoff Bank.
- Request to manager: client leaves contacts, manager calls back within 15 minutes. Installment — integration with Tinkoff Instalment.
Comparison of approaches: custom development vs CMS
| Criteria |
Custom Portal (Next.js + Laravel) |
Off-the-shelf CMS (WordPress) |
| API load |
Handles 100+ req/sec |
Slows down at 10+ req |
| Load speed |
<2 sec |
5+ sec |
| Search flexibility |
Any filters, auto-suggest |
Limited by plugins |
| API integration |
Real-time |
Manual update |
| SEO (Core Web Vitals) |
LCP < 2.5, CLS < 0.1 |
LCP > 4, CLS > 0.2 |
What's included in each stage?
| Stage |
What we do |
Outcome |
| Analysis |
Study business processes, tour operator APIs |
Technical specification |
| Design |
DB architecture, UI prototypes |
Design mockups and ER diagram |
| Development |
Backend on Laravel, Frontend on Next.js, API integration |
Working portal on staging |
| Testing |
Functional, load, acceptance |
Testing protocol |
| Deployment |
Server setup, CI/CD, domains, SSL |
Portal in production |
| Support |
1-month warranty |
SLA 99.9% |
Typical mistakes in travel agency portal development
- Choosing CMS instead of custom development — WordPress cannot handle API load and complex filters.
- Lack of caching — each API request takes up to 3 seconds, without cache pages load in 10+ seconds.
- Ignoring Core Web Vitals — LCP > 4 seconds kills conversion. We optimize LCP < 2.5, CLS < 0.1.
Timeline and cost
Development timeline: from 6 weeks for a basic portal (catalog + requests) to 5 months with full functionality. Cost is calculated individually — depends on the number of integrations and complexity. Contact us so we can evaluate your project.
Get a consultation with an analysis of your business processes and current site. We'll offer the best turnkey solution.
Development of Corporate Portals and Internal Systems
We specialize in developing corporate portals — CRM, ERP, LMS, and Intranet. Each project starts not with landing page layout, but with how business rules will be embedded into the architecture: who sees which data, how 1C and accounting systems sync, how 500 contacts turn into 500,000 without performance degradation. Over 7 years, we have delivered over 40 portals for companies with 50 to 5000 employees. We will evaluate your project in two business days — just contact us.
A public website can be launched without detailed design — iteratively improved based on feedback. With a corporate portal, this approach does not work: the cost of fixing architectural decisions after launch for 200 users is incomparably higher. Therefore, we spend 70% of our time on analysis and prototyping, and write code only after the role matrix and integration scheme are approved.
Three areas where bad decisions are often made: access rights model, performance on large data, and real-time updates.
How to build a role model for 30 departments?
Access rights model. "A manager sees only their own clients, a department head sees the entire department, a director sees the whole company, but financial data is visible only to the CFO and above." This is not three roles — it's a matrix of roles, permissions, organizational units, and record ownership. Implementing it with if ($user->role === 'manager') in controllers will make the code unmaintainable after six months.
The correct approach: Spatie Laravel Permission for basic role model + Policy classes for object-level permission (can('view', $deal) checks not only the role but also ownership). For complex hierarchical structures — ABAC (Attribute-Based Access Control) instead of RBAC.
Performance on large data. CRM with 500,000 contacts, filtering by 10 fields, sorting by activity — a naive implementation yields 15-second queries. Composite indexes, denormalization of aggregates (last_activity_at on the record itself instead of MAX over related table), Elasticsearch for full-text search on contacts.
Real-time updates. Multiple employees working on the same document or task. Without WebSocket — constant setInterval with polling every 5 seconds, extra server load, update delays. Laravel Broadcasting + Pusher/Soketi or a custom WebSocket server on Node.js — for notifications and real-time changes.
CRM Systems
Typical set: contacts, companies, deals, activities, sales funnel, reports. Technically straightforward. The complexity lies in the details.
Pipeline with custom stages. Every company wants its own funnel. Stages must be configurable without deployment. Table pipeline_stages with position, color, is_final, probability — and drag-and-drop for reordering on UI (React DnD or dnd-kit).
Change history. Who and when changed a deal status, reassigned a responsible person, added a note. Audit log via Observer or spatie/laravel-activitylog. On UI — timeline with filtering by activity type.
Email integration. IMAP/SMTP for connecting corporate mailbox, automatic linking of incoming emails to contacts by email address. This works reliably only with proper handling of bounces, spam, auto-replies — filtering is required.
Why is ERP not about code but about data?
ERP is when CRM, warehouse, production, accounting, and HR are unified into a single system. Full ERP from scratch is rare (usually integrating with existing systems), but modular systems for specific businesses are common.
Key principle: financial operations must be immutable. Not UPDATE orders SET status = 'cancelled' — but creating a new record order_cancellations with a reference to the original order. This is the immutable ledger principle, which simplifies auditing and reconciliation.
Integration with 1C is almost always part of an ERP project. Two-way synchronization: from 1C to portal (directories, balances, prices) and from portal to 1C (orders, documents). RabbitMQ as an event bus between systems is more reliable than direct HTTP interaction — if 1C is unavailable, messages wait in the queue.
How are LMS structured: learning platforms?
Learning Management System — courses, modules, lessons, tests, certificates, user progress.
Video content is the most demanding part of an LMS. Storing video on your own server and serving via Nginx is a bad idea: expensive, slow, no adaptive bitrate. Correct approach: upload to S3/Cloudflare R2, transcode via AWS Elemental MediaConvert or Mux, HLS playlist for adaptive streaming via Video.js or Plyr.
Viewing progress — periodic sending of watch_position from the frontend (every 10–30 seconds), storage in Redis with periodic synchronization to PostgreSQL. Do not save every second to the database — it will kill performance.
SCORM compatibility — if integration with corporate training materials is needed. Separate module, there are ready libraries (scorm-again).
Intranet and HR Portals
Corporate intranet: news, documents, organizational structure, HR processes (vacations, requests, KPIs).
Organizational structure in the database is a hierarchical structure. Adjacency list (parent_id on each record) is simple to implement but slow for recursive queries. Nested Sets or Closure Table are faster for reading hierarchies, more complex for changes. In PostgreSQL — recursive CTEs (WITH RECURSIVE) with adjacency list — a balance between simplicity and performance.
Document and request approval — workflow engine. Simple linear approvals (employee → manager → HR → accountant) can be done without a special engine. Non-linear (parallel branches, conditional transitions, delegation) — consider ready solutions: Temporal.io for workflow orchestration or a custom state machine based on the state-machine pattern.
What is included in the work
When ordering a corporate portal development, you receive:
- Architectural documentation (ER diagrams, integration scheme, role matrix)
- Full code in a Git repository with CI/CD
- Access to infrastructure (hosting, databases, storage)
- Training for administrators and key users (2–3 sessions)
- Warranty support for 3 months after launch
Our design principles rely on official Laravel documentation on authorization (Policies) and recommendations for working with queues.
Technical Stack for Portals
| Layer |
Tools |
| Backend |
Laravel + PostgreSQL |
| Frontend |
React + TypeScript (Inertia.js or separate SPA) |
| Real-time |
Laravel Echo + Soketi / Pusher |
| Search |
Meilisearch (quick start) or Elasticsearch (volume) |
| Queues |
Laravel Queue + Redis |
| Files |
S3-compatible (MinIO self-hosted or AWS S3) |
| Monitoring |
Sentry + Telescope (dev) |
Timeline Estimates
| Portal Type |
Timeline |
| CRM (basic) |
10–16 weeks |
| LMS (courses + video + tests) |
14–22 weeks |
| HR Portal (vacations, KPIs, org structure) |
12–20 weeks |
| Corporate ERP (modular) |
24–52 weeks |
The cost is calculated individually after a detailed analysis of requirements and role model. To get a preliminary estimate, contact us — we will analyze your task and offer an optimal turnkey solution.