Skip to content

Instantly share code, notes, and snippets.

@mdunbavan
Forked from mogetutu/redactor-laravel.md
Created January 28, 2014 16:56
Show Gist options
  • Save mdunbavan/8671641 to your computer and use it in GitHub Desktop.
Save mdunbavan/8671641 to your computer and use it in GitHub Desktop.

Have a writable folder public/blog_images in you app.

###routes.php

// Redactor Blog Upload
Route::post('redactorUpload', function()
{
    $file = Input::file('file');
    $fileName = $file->getClientOriginalName();
    
    $file->move(public_path().'/blog_images', $fileName);
    return Response::json(array('filelink' => '/blog_images/' . $fileName));
});

###redactor-js.js

<script type="text/javascript">
    $(function() {
        $('#blog').redactor({
            imageUpload: '/redactorUpload'
        });
     });
</script>

###textarea definition

<div class="control-group">
     <textarea name="body" id="blog"></textarea>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment