Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

neilstee's avatar

Page Builder inside Laravel

Hi, I'm trying to build a Landing Page builder inside my Laravel App.

Basically, they will build a web page using this "page builder" and save it to my App then, later on, can be viewed as mypage.domain.com

I'm trying to find a good package/plugin for this but end up in Wordpress plugins, anyone has a recommendation or similar project to this?

Also, a guide to do a subdomain as per the example above is a great addition to this.

Thanks!

0 likes
11 replies
harshal999's avatar

@NEILSTEE - Hi, can you please confirm whether grapejs works with laravel ? as per their document, it is optimized for node.js.

Can you share your experience of integrating grapejs with laravel.

bufferoverflow's avatar

Hey, I'm also making a webpage builder with Laravel and Vue.

I finally decided to make my own builder with Vuejs components so I can have a more differentiate page builder and also learn a lot while doing it.

I implemented the subdomain thing like this:

Route::group(['domain' => '{subdomain}.{domain}.{tld}'], function () {

    // Index
    Route::get('/', 'UserSiteController@index');

    // My builder supports multipage, so this method looks for that slug or returns 404
    Route::get('/{slug}', 'UserSiteController@show');
});

Then just get the subdomain in the controller like this:

public function index($subdomain) { ... }
shoemoney's avatar

sorry 2 years late but just discovered it a bit ago myself. been dying to get off wordpress since 2004 or so over 6500 posts. this is built on grape but tailored for laravel with tailwind works great with purgecss. has other stacks of u must. https://github.com/mariojgt/onix-pro

aamircs's avatar

Hello @neilstee @shoemoney

Here is an outstanding page builder for laravel same to the WordPress Elementor Page builder

LaraBuild - Laravel Drag and Drop Page builder and Settings Builder Package

https://codecanyon.net/item/larabuild-a-laravel-option-builder-package/42354730

https://larab.wp-guppy.com/option-builder

https://larab.wp-guppy.com/pages

https://demos.wp-guppy.com/documentation/larabuild/

This also comes with the Settings builder same like Redux WordPress

Upcoming Outstanding features

  • Premade templates
  • Menu Builder like WordPress

This outstanding project is created for the developers to save their time. You can create settings very easily as well as the Shortcodes for the pages

Thank you

Please or to participate in this conversation.