简体   繁体   中英

Laravel 8 Quilljs save data to database

I have a Form with three Quilljs Editors. now if I try to save it to my database, I will get nothing. So is there any way to save quilljs Content to DB and how can I load the data from the db to die quilljs editor?

here is a small snippet from my blade File:

<div class="card-body">
        <div class="row">
                <div class="col-md-12">
                        <div class="form-group">
                                <label for="test">Information</label>
                                <div id="test"> </div>
                         </div>
                  </div>
                    ...
          </div>
 </div>

My Controller

public function store(Request $request)
{
    $request-validate([
            ...
            'test' => 'nullable',
            ...
    
    $input = $request->all();
    ...
    
    Testtable::create($input);

    return redirect()->route('home')->with('success', 'You successfully add a new Product!');
    
}

I hope anyone can help me

you can't create table like that

please follow laravel docs https://laravel.com/docs/5.0/eloquent#insert-update-delete

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM