Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Redactor Bundle Laravel Package

app-verk/redactor-bundle

View on GitHub
Deep Wiki
Context7

RedactorBundle

Symfony Redactor Bundle. The bundle required to working redactor.js script.

Configure

Require the bundle with composer:

$ composer require app-verk/redactor-bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new AppVerk\RedactorBundle\RedactorBundle(),
        // ...
    );
}

Add to config.yml:

twig:
    form:
        resources:
            - 'RedactorBundle:Redactor:fields.html.twig'
            
redactor:
    basic:
        settings:
            lang: 'en'
            minHeight: 300

Add these libs into your layout:

<!--css -->
<link rel="stylesheet" href="{{ asset('/your-folder/redactor.css') }}" />

<!-- js -->
<script src="{{ asset('/your-folder/redactor.js') }}"></script>
<script src="{{ asset('bundles/redactor/js/symfony-script.js') }}"></script>

Redactor Form Type

<?php

use Symfony\Component\Form\AbstractType;
use AppVerk\RedactorBundle\Form\Type\RedactorType;
use Symfony\Component\Form\FormBuilderInterface;

class Post extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $formMapper
            ->add('body', RedactorType::class, [
                'redactor' => 'basic' // your config name
            ])
        ;
    }
}

License

The bundle is released under the MIT License.

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
besmartand-pro/php-quality-config
sentix/ai-chatbot
codifyo/ts-generator-bundle
mintobit/jobqueue
a4sex/maintenance-bundle
a4sex/entity-date-update
a4sex/client-identifier
a4sex/base-utilites
a4sex/key-value-storage
a4sex/micro-status
chilldev/dependency-injection-extra
datinglibre/datinglibre-app-api
biberltd/corebundle
bricre/symfony-bundle-test
biberltd/logbundle
dominium/http-adapter-bundle
dominium/google-analytics
a4sex/auto-clean-entity
christhompsontldr/laravel-inky
spatie/mailcoach-vapor