2017 © Pedro Peláez
 

library laravelmce

image

jleach/laravelmce

  • Friday, April 25, 2014
  • by doveraudio
  • Repository
  • 1 Watchers
  • 1 Stars
  • 39 Installations
  • CSS
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

A simple package to add TinyMCE to a laravel project.

use composer, and add the following line to your composer under "require", (*1)

"jleach/laravelmce": "dev-master"

add to config/app.php, (*2)

'Jleach\Laravelmce\LaravelmceServiceProvider',

run in the command line, (*3)

php artisan asset:publish

then add this line to your head section in your blade.php view., (*4)

{{ HTML::script('packages/jleach/laravelmce/js/tinymce/tinymce.min.js') }}

<script>
tinymce.init({
    selector: "textarea"
});
</script>

and in the body:, (*5)

<form method="post">
<textarea></textarea>
</form>

The Versions

25/04 2014

dev-master

9999999-dev

  Sources   Download

The Requires

 

by Jeremy Leach