Download the PHP package xisodev/laravel-pagebuilder without Composer
On this page you can find all versions of the php package xisodev/laravel-pagebuilder. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download xisodev/laravel-pagebuilder
More information about xisodev/laravel-pagebuilder
Files in xisodev/laravel-pagebuilder
Package laravel-pagebuilder
Short Description 드래그 앤 드롭을 활용한 AMUZCMS 전용 페이지빌더입니다.
License MIT
Homepage https://github.com/XisoDev/Laravel-Pagebuilder
Informations about the package laravel-pagebuilder
Laravel-Pagebuilder
A drag and drop pagebuilder to manage pages in any Laravel project.
Laravel Pagebuilder is built on PHPageBuilder. It integrates the most popular open source drag and drop pagebuilder: GrapesJS. This package is made with customization in mind, allowing you to configure, disable or replace any of its modules.
Installation
Follow these steps to install Laravel Pagebuilder in your project:
composer require xisodev/laravel-pagebuilder
php artisan vendor:publish --provider="XisoDev\LaravelPageBuilder\ServiceProvider" --tag=config
- Update the configuration in
config/pagebuilder.php
php artisan migrate
Next, you need to create a theme:
php artisan pagebuilder:create-theme [name here]
.. or publish the demo theme:
php artisan vendor:publish --provider="XisoDev\LaravelPageBuilder\ServiceProvider" --tag=demo-theme
copy assets:
php artisan vendor:publish --provider="XisoDev\LaravelPageBuilder\ServiceProvider" --tag=public
Now you are able to login via /admin
with admin
and changethispassword
(the admin URL and credentials can be changed in the pagebuilder config file).
Visit the PHPageBuilder repository for detailed information on how to develop themes.