
Closed
Posted
Paid on delivery
I have an existing Laravel business directory platform called Top3Verified, built on the Atlas Laravel Business Directory script (CodeCanyon). The platform concept is simple: only the Top 3 verified businesses are shown per category per city — quality over quantity. The Atlas script already handles listings, reviews, subscriptions, agent accounts, booking system, SEO, and admin dashboard. I do NOT need these rebuilt. I need 6 custom modules built ON TOP of the existing script without breaking its core functionality. MODULES REQUIRED: Module 1 — Top 3 Restriction + Waiting List Atlas currently shows unlimited businesses. I need a system that allows only 3 active verified businesses per category per city. Any additional business goes into a waiting list. When a Top 3 slot opens, the highest-ranked waiting business gets auto-promoted. Admin can manually manage slots. Business owners get email notifications when placed on waitlist or promoted. Module 2 — Business Ranking Score System Every verified business gets a score out of 100 points. Score is calculated from: verification level (30pts), verified reviews (25pts), profile completeness (15pts), lead response rate (10pts), subscription plan (10pts), and agent inspection score (10pts). Score runs as a Laravel background queue job. Score determines waiting list order. Business owner dashboard shows score breakdown with improvement tips. Module 3 — Advanced Verification Module Three verification badge levels: Top3 Verified (Basic): business registration doc + mobile OTP Top3 Trusted (Standard): GST certificate + 5 verified reviews Top3 Elite (Premium): all above + physical agent inspection Verification has expiry (6–12 months). Admin panel for document review, approve/reject with reason. Expired verification = automatic removal from Top 3. New database tables needed: business_verifications, verification_documents, verification_logs, gst_verifications, agent_inspections. Module 4 — Agent Verification Dashboard Extend existing Atlas agent panel with: assigned business list, physical inspection form with checklist (office exists, signboard visible, staff present, services match, cleanliness rating 1–5), photo upload (min 3), auto-calculated inspection score, inspection history, and commission tracker. Agent inspection score feeds directly into Module 2 ranking score. Module 5 — WhatsApp Integration WhatsApp notifications for all key events: new lead received, verification approved/rejected, promoted to Top 3, added to waiting list, verification expiry reminder, new inspection assigned (for agents). Use Meta WhatsApp Business API or Twilio or WATI.io. Fallback to email if WhatsApp fails. Admin can enable/disable globally. Message logs required. Module 6 — Lead Tracking Dashboard Atlas only has a basic contact form with no lead saving. I need: every lead saved to database with source, customer details, message, and timestamp. Business owner dashboard with lead list, status management (New/Viewed/Contacted/Converted/Closed), response rate tracker, conversion tracking, and CSV export. High response rate boosts ranking score. Admin sees platform-wide lead analytics. Strict row-level security — one business owner cannot see another's leads. TECH STACK: PHP / Laravel, MySQL, JavaScript, HTML/CSS IMPORTANT RULES: Do NOT modify Atlas core files where possible All custom code must be in separate Laravel modules or service providers Clean, commented code is mandatory Git version control required throughout the project Milestone-based payment — each module is a separate milestone, payment after testing and approval DEVELOPER REQUIREMENTS: Minimum 3 years Laravel experience Must have worked with CodeCanyon scripts before MySQL, REST API, Laravel Queue experience required WhatsApp API integration experience is a plus PRIORITY: Modules 1, 2, and 3 are urgent. If you can start and deliver these three first, that is preferred. Modules 4, 5, 6 can follow in Phase 2. HOW TO BID: Start your bid message with: "I have read the Top3Verified brief" — this confirms you have read the full requirements. Bids that do not include this will be ignored. Also answer these in your bid: Have you worked with Atlas script or any CodeCanyon directory script before? Which of the 6 modules do you think is most complex and why? Your estimated timeline per module Link to 1–2 relevant past Laravel projects Skills: Laravel, PHP, MySQL, REST API, JavaScript, WhatsApp API
Project ID: 40488058
68 proposals
Remote project
Active 2 days ago
Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
68 freelancers are bidding on average ₹27,615 INR for this job

I have read the Top3Verified brief. Hello, I see you are looking for an experienced Laravel developer to extend your existing Atlas Business Directory platform with custom modules for Top 3 restrictions, ranking logic, advanced verification workflows, agent inspections, WhatsApp notifications, and lead management. I have experience working with Laravel, MySQL, queue jobs, API integrations, and customizing existing platforms while keeping core systems untouched through modular development and service-based architecture. The most complex module is the Advanced Verification System because it integrates document workflows, verification levels, expiry management, agent inspections, ranking score calculations, and automated status transitions that affect multiple other modules. I would approach the project module by module, starting with the urgent Modules 1, 2, and 3 to establish the platform's core business logic before moving to WhatsApp integration and lead management features. I would be happy to discuss the Atlas codebase, development milestones, and implementation strategy in detail. Please send me a message so we can review the project requirements and get started. Thanks
₹30,000 INR in 10 days
8.1
8.1

I have read the Top3Verified brief. Yes, I have worked with Atlas script and CodeCanyon directory scripts before. Module 3 (Advanced Verification) is the most complex — it requires multi-level badge logic, expiry management, document uploads, agent inspections, and multiple new database tables that must integrate cleanly with Atlas's existing data model. Estimated timeline: Modules 1+2+3 = ~3 weeks, Modules 4+5+6 = ~2 weeks. I'll build all custom code in separate Laravel service providers/modules, using Git throughout, keeping Atlas core untouched. My Laravel experience includes custom module development on top of marketplace scripts, REST APIs, queue jobs, and WhatsApp API integrations. I'll prioritize your urgent modules first and deliver tested milestones. Let's discuss and get started. Regards, Harsh Thoriya
₹35,000 INR in 7 days
8.3
8.3

Hi there, I’ve reviewed your project and would be happy to help. With 10+ years of experience in Laravel, I specialise in building secure, scalable, and high-performance web applications and APIs. You’ll get clean code, efficient architecture, and reliable delivery — with consistent communication throughout. Let’s connect and get started! Best, Bhargav Laravel Expert | 10+ Years Experience
₹25,000 INR in 7 days
7.0
7.0

Your Top 3 restriction logic will fail if two businesses have identical ranking scores during auto-promotion. Without a tiebreaker rule (timestamp, subscription tier, or manual override), the queue system won't know which waiting business to promote when a slot opens. Before architecting the module structure, I need clarity on two scenarios: 1. If a Top3 Elite business lets verification expire, does it drop to waiting list immediately or get a 7-day grace period? This affects how you handle customer churn. 2. What's your expected lead volume per business per month? If it's over 500 leads, we'll need database partitioning and indexed queries to prevent the dashboard from timing out. Here's the architectural approach: - LARAVEL QUEUES + REDIS: Implement background jobs for score recalculation triggered by events (new review, verification update) instead of cron jobs that lock tables during peak traffic. - MYSQL ROW-LEVEL SECURITY: Use Laravel policies with business_id scoping on every lead query to prevent data leaks. I'll add database indexes on (business_id, created_at) to keep response times under 100ms even at 50K leads. - WHATSAPP API FAILOVER: Build a notification service layer that tries Meta Business API first, falls back to Twilio if rate-limited, then email. Message logs stored in a separate table with retry logic for failed sends. - CODECANYON ISOLATION: All custom code goes into app/Modules/ with separate migrations, routes, and service providers. Zero edits to vendor files so Atlas updates won't break your system. - GIT BRANCHING: Each module gets its own feature branch with pull requests for review before merging to main. I've extended 4 CodeCanyon scripts without breaking core updates, including a multi-vendor marketplace that scaled to 12K listings. The tiebreaker logic and verification expiry flow are critical - let's discuss edge cases on a 15-minute call before I start Module 1.
₹22,500 INR in 7 days
7.2
7.2

Hello! I am an experienced Laravel developer with deep knowledge of the Atlas Business Directory Script (CodeCanyon) and have customized it for multiple clients. I can build all 6 custom modules for your Top3Verified platform. Deliverables: - Module 1: Top 3 Restriction + Waiting List with auto-promotion logic - Module 2: Verified Badge System with tiered verification levels - Module 3: Custom Search Filters for city + category + rating - Module 4: Admin Reporting Dashboard with analytics - Module 5: Email Notification System for all module triggers - Module 6: API Endpoints for external integrations I have worked with the Atlas script extensively and understand its architecture. I can implement these modules without breaking core functionality. Please message me to discuss the detailed requirements. Looking forward to working with you!
₹30,000 INR in 7 days
6.4
6.4

Hi, I came across your project "Laravel Developer Needed — 6 Custom Modules on Atlas Business Directory Script (Top3Verified Platform)" and I'm confident I can help you with it. About Me: I'm a full stack developer and agency owner with over 8+ years of experience in PHP, Laravel, MySQL. , and I understand exactly what’s needed to deliver high-quality results on time. Why Choose Me? - ✅ Expertise in required Technologies and 1 year post deployment free support - ✅ On-time delivery and excellent communication - ✅ 100% satisfaction guarantee Let’s discuss your project in more detail. I’m available to start immediately and would love to hear more about your goals. Looking forward to working with you! Best regards, Deepak
₹25,000 INR in 7 days
5.8
5.8

I have read the Top3Verified brief and I would love to help build these custom modules on top of your existing Atlas Laravel Business Directory platform. I am a Laravel Developer with experience in CodeCanyon-based systems, custom module development, REST APIs, MySQL, queue jobs, dashboard development, and third-party integrations. My approach is to extend Atlas using separate modules, service providers, migrations, and Laravel best practices while avoiding core file modifications wherever possible. The most complex module is Module 2 (Business Ranking System) because it connects with verification, reviews, subscriptions, inspections, lead tracking, queue processing, and automatic Top 3 promotions. It becomes the central logic that drives the platform. Estimated timeline: • Module 1: 3–4 days • Module 2: 5–7 days • Module 3: 5–6 days • Module 4: 4–5 days • Module 5: 3–4 days • Module 6: 4–5 days I can prioritize Modules 1, 2, and 3 first, use Git throughout development, provide clean documented code, and deliver milestone-by-milestone testing before approval.
₹20,000 INR in 15 days
6.0
6.0

I have read the Top3Verified brief. Hello, I’m Karthik, a Laravel Developer and Solution Architect with 15+ years of experience in PHP, MySQL, REST APIs, and CodeCanyon script customization. I can extend the Atlas Directory script without modifying core files by building upgrade-safe Laravel modules/service providers. ✔ Experience customizing CRM, Directory, ERP, and Marketplace CodeCanyon applications ✔ Strong expertise in Laravel Queues, Role Management, Lead Tracking, and WhatsApp API integrations ✔ Milestone-based delivery with Git version control and documented code Answers: • Most complex module: Module 2 (Ranking System) due to dependency on multiple modules, queue jobs, and auto-promotion logic. • Timeline: Module 1: 3-4 days Module 2: 4-5 days Module 3: 5-6 days I can start immediately with Modules 1, 2, and 3 and deliver them first as requested. Regards, Karthik 15+ Years | Laravel | PHP | MySQL | REST APIs
₹50,000 INR in 7 days
5.7
5.7

Having worked extensively with Laravel for over 8 years, I have developed a deep understanding of its functionalities, including its queues and REST APIs, which are crucial for your project. Moreover, my expertise in database design, particularly MySQL, ensures that any new table additions, such as the ones required for verification and inspections, will be seamlessly integrated without disrupting the existing core function of Atlas. To keep track of any modifications made to the script and ensure a collaborative development process, I am well-versed in Git version control. In addition to this, I have commendable experience regarding third-party API integration which is vital for your Module 5 in which I'd be utilizing Meta WhatsApp Business API or Twilio or WATI.io. My strong background in not just backend but frontend too using JavaScript/jQuery, HTML/CSS (including responsive UI/UX Design) signifies that I can ensure your entire platform works harmoniously. Lastly, being an expert in building SEO-optimized websites and proficient with digital marketing including social media campaigns could significantly benefit your Lead Tracking Dashboard (Module 6) by boosting its analytics, enhancing SEO performance and overall increasing platform visibility.
₹13,000 INR in 7 days
5.3
5.3

I have read the Top3Verified brief. Hi! The Top 3 restriction plus auto-ranking and queue logic is the part that stands out — that’s where Atlas and most CodeCanyon scripts struggle, since their business logic assumes unlimited listings. Cleanly overlaying that priority plus a real-time waiting list without touching Atlas core files will need careful Laravel service-provider work. Yes, I have worked with CodeCanyon directory scripts before. I haven’t used Atlas specifically, but have extended the Workreap freelance marketplace script — also modular, so I know the pitfalls of keeping custom modules separated and safe from future updates. Module 2 (Business Ranking Score System) looks most complex. Not because of the scoring algorithm, but because it needs true background jobs, historical score tracking, dashboard widgets, and links to almost every other module — lots of moving parts, plus it directly drives the waitlist logic. I can start this week and will give a phased build: Modules 1 to 3 first, then the rest if you’re happy. Timeline and breakdown I’ll scope out with you — I’d rather plan it based on a real walk-through and codebase review. Want me to send a quick free outline showing how I’d structure each module as a separate Laravel provider, with rollback safety and Git workflow? You can see similar Laravel extensions built for SaaS tools at work.techindika.com. — Pradeep
₹25,000 INR in 7 days
5.4
5.4

With the impressive blend of my profound 9+ years experience in web and mobile development, as well as proficiency in JavaScript, Laravel, MySQL, PHP, and Software Development, I am unquestionably the ideal candidate for this crucial project. Unlike other freelancers, I don't just possess minimum knowledge required to do the job but have implemented and executed complex projects like this before - catering to numerous critical functionalities while ensuring a clean code and without hampering the core attributes of the existing framework; I’m all about working smarter. Moreover as part of my work history, I have had hands-on experience with CodeCanyon scripts in the past that has further sharpened my capabilities in handling similar tasks. Beyond these unique skills, I deeply value and prioritize results-based project management. My milestone-based payment approach mirrors that same commitment to ensuring satisfaction - each module is a distinct challenge with its own edge. I’ll focus on ensuring that each completed phase surpasses your expectations, compelling/prompting continuing with me. Lastly, what sets me apart from the rest is not just my technical skill-set but also my focus on client-centric services. In addition to adhering to strict row-level security - which is essential in your project- I intend on extending a 3-month free support for existing’ developments at no extra cost! Additionally , after delivery I can also provide reasonably priced Domain
₹25,000 INR in 7 days
5.4
5.4

As a seasoned freelance developer, Laravel is my domain and I am deeply familiar with the CodeCanyon scripts. My experience goes beyond just coding; I understand the dynamic array of challenges that come with building on existing platforms while maintaining core functionality. Your project demands precisely that - adding 6 custom modules to the existing Atlas Laravel Business Directory script without disturbing its foundational framework. With a 3-year track record in Laravel and accomplished MySQL skills, I specialize in clean, commented code and maintain a consistent use of Git for version control throughout projects. Alongside these technical abilities, I bring practical innovation to the table ensuring your digital solution stands out in this crowded marketplace. Your project deserves nothing less. In line with your project's priority needs, I will get right down to delivering Modules 1, 2, and 3 promptly without compromising quality. This will establish a solid foundation for Modules 4, 5, and 6 in Phase 2. Beyond completing each module as a separate milestone and diligently adhering to your required methodology (clean code, separate Laravel modules), rest assured that my primary focus is the long-term success of every product I build - a dedication you can count on throughout our journey together.
₹30,000 INR in 5 days
5.1
5.1

I focus on writing clean and maintainable code, solving problems properly, and making sure the final solution works smoothly in real use. Whether you need a new laravel application, script development, debugging, API integration, or improvement of an existing project, I can support the full process.
₹15,000 INR in 7 days
4.3
4.3

Drawing on our experience in Laravel (over 3 years), we're confident we can fulfill your requirements for the Atlas framework to the highest standard. We've worked with CodeCanyon scripts many times before, and as such, we have a thorough understanding of the intricacies of these scripts and what it takes to build custom modules on top of them. Our proficiency includes MySQL, REST API, and Laravel Queue - critical skills required for your project's success. In addition, the ability to tactically enhance existing structures without breaking their core functionality is a vital skill we possess. Throughout our work, we prioritize clean, commented code as well as comprehensive documentation for easy management and scalability.
₹25,000 INR in 7 days
3.7
3.7

With over 3 years of Laravel experience, I appreciate your need to upgrade Top3Verified with new features without compromising the current functionality. My conviction aligns with your project's vision which is "quality over quantity." I comprehend that you prefer not to tinker with Atlas core files whenever possible and all custom codes must be done in separate Laravel modules or service providers. That doesn't intimidate me. In fact, as a Full-Stack Developer and DevOps Engineer, I'm comfortable working with Git version control, hence maintaining code integrity. Handling MySQL, REST API, and having worked on CodeCanyon scripts before, I am fairly adept in dealing with script-based platforms and experienced in integrating solutions within them while keeping compatibility intact. While my solid skills in PHP/Laravel, JavaScript, HTML/CSS situate me well for this work, my background in Linux administration and Kubernetes equips me uniquely for ensuring top system performance post-deployment.
₹20,000 INR in 7 days
3.5
3.5

Hi there! ? I've carefully reviewed your project requirements and I'm confident I can deliver exactly what you need. **Why I'm the right fit:** • 7+ years of professional software development experience • Delivered 100+ projects with 98% client satisfaction • Expert in modern tech stack and best practices **My approach to your project:** 1. **Discovery & Planning** — I'll start by understanding your exact requirements, target users, and design preferences 2. **Architecture & Design** — Clean, scalable architecture with modern best practices 3. **Development** — Iterative development with regular demos and feedback loops 4. **Testing & QA** — Comprehensive testing including unit tests, integration tests, and user acceptance testing 5. **Deployment & Support** — Full deployment assistance and post-launch support **What you'll get:** • Clean, well-documented, maintainable code • Responsive design that works on all devices • Secure implementation following industry best practices • Timely delivery with daily progress updates • 30-day free bug-fix support after delivery **Relevant skills:** software development I'd love to discuss your vision in detail. Let's connect and make this happen! Best regards
₹25,000 INR in 8 days
3.3
3.3

I have read the Top3Verified brief — I can extend your Atlas Laravel script with clean modular architecture, implementing Top 3 slot enforcement, ranking engine, verification workflows, WhatsApp automation, and lead tracking without touching core files. Modules 1–3 will be prioritized with queue-based scoring logic and admin-controlled workflows leveraging Laravel services, events, and background jobs for scalability.
₹25,000 INR in 7 days
3.0
3.0

Hello, I have read the Top3Verified brief. I saw your requirement for extending your existing Atlas Laravel Business Directory script with 6 advanced custom modules without modifying core functionality. We can help you build this as a clean, modular Laravel extension layer with proper service providers, queues, and database isolation. Our Tech Stack: Laravel (modular architecture using Service Providers) MySQL (optimized relational structure for ranking + leads + verification) Laravel Queue System (background scoring + automation jobs) REST API + Event Listeners (for WhatsApp/email automation) JavaScript / Blade for dashboard enhancements Complexity Insight: The most complex module is Module 2 (Ranking Score System) because it requires: Real-time + queued recalculation logic Dependency on multiple subsystems Ranking stability + fairness rules Integration with waitlist promotion automation We will implement this as a non-invasive extension layer: No modification of Atlas core files Custom Laravel modules + service classes Event-driven architecture (so Atlas updates remain safe) Fully version-controlled Git workflow Phase 1 (Modules 1–3) can be prioritized and delivered first as requested. We can share live demos/repositories once we connect. We are comfortable starting immediately with Modules 1–3 and can structure the system so it remains fully scalable for Phase 2 expansion. Best regards, Plexikart
₹12,500 INR in 15 days
2.3
2.3

Hi, sir, I have read the Top3Verified brief and understand you need 6 custom Laravel modules built on top of the Atlas script without affecting existing functionality. I recommend building each feature as separate Laravel modules/service providers with clean, documented code, queues, events, and Git-based milestone delivery to keep the platform scalable and upgrade-safe. Answers: CodeCanyon Experience: Yes, I have customized Laravel-based CodeCanyon scripts and extended existing systems without modifying core files. Most Complex Module: Module 2 (Ranking System) because it connects verification, reviews, leads, subscriptions, inspections, and automated promotions. Timeline: Module 1: 3–4 days Module 2: 4–5 days Module 3: 5–6 days Remaining modules: 2–5 days each I am just starting out on this platform, but I have a lot of experience building reliable websites for clients all over the world. I value my clients and only offer high quality at a discounted price to meet their needs and build good relationships. I would like to challenge myself with your company for new opportunities. Thank you. OLADIPUPO DAVID AYODEJI
₹25,000 INR in 7 days
1.7
1.7

I have read the Top3Verified brief. Your approach of extending Atlas rather than rebuilding it is exactly how I would handle this project. With 10+ years of experience in PHP/Laravel development, I have worked extensively with CodeCanyon-based products, custom modules, REST APIs, queue jobs, role-based systems, and business workflow automation. My approach: ✔ Build all features as separate modules/service providers ✔ Minimize modifications to Atlas core files ✔ Follow Laravel best practices, Git workflow, and clean documentation ✔ Milestone-based delivery with testing after each module Answers: 1. CodeCanyon Experience Yes. I have customized and extended multiple Laravel-based CodeCanyon applications including CRM, directory, booking, SaaS, and marketplace platforms. 2. Most Complex Module Module 2 (Business Ranking System) because it depends on data from multiple modules, queue processing, dynamic recalculation, waiting list automation, and ranking integrity across categories/cities. 3. Estimated Timeline Module 1: 4–5 days Module 2: 5–7 days Module 3: 6–8 days Module 4: 4–5 days Module 5: 3–4 days Module 6: 5–6 days I can start immediately and recommend beginning with Modules 1, 2, and 3 as Phase 1 since they establish the foundation for rankings, verification, and Top 3 management. Looking forward to discussing the Atlas version, current customizations, and repository access. Best Regards, Amit Vijay
₹30,000 INR in 7 days
1.9
1.9

Agra, India
Member since Mar 6, 2023
$15-25 USD / hour
$10-30 USD
₹100-400 INR / hour
₹1500-12500 INR
$750-1500 USD
₹600-1500 INR
$2-8 USD / hour
₹600-1500 INR
$8-15 USD / hour
₹12500-37500 INR
$30-250 USD
$30-250 USD
₹900-9000 INR
min £36 GBP / hour
₹750-1250 INR / hour
₹1500-12500 INR
$100-150 USD
₹12500-37500 INR
₹100-400 INR / hour
£250-750 GBP