Rufen Sie an eine member-Funktion speichern() auf array laravel

Im das tun die update-Methode. Wenn ich versucht, zu aktualisieren, die die spezifischen Daten, im immer diese Fehlermeldung "Call to a member function save() auf array". Warum? Gibt es etwas fehlt in meinem Code?

Ich auch versucht mit print_r $result variable, die einen Wert hat..

Ansicht

@extends('dashboard')
@section('content')

<br><br>
<div class="x_content">
  <table class="table table-hover">
     <thead>
      <tr>
        <th>#</th>
        <th>Text Header</th>
        <th>Text Description</th>
        <th>Action</th>
        <th>Updated At</th>
        <th>Created At</th>
      </tr>
    </thead>
    <tbody>
      @foreach($data as $text)
      <tr>
        <th scope="row">{{ $text->id }}</th>
        <td>{{ $text->text_header}}</td>
        <td>{!! nl2br(e($text->text_description)) !!}</td>
        <td><button class = "btn btn-info btn-md" data-toggle="modal" data-target="#myModal-{{$text->id}}"><i class="fa fa-pencil-square-o" aria-hidden="true"></i> Edit</button></td>
        <div class="modal fade" id="myModal-{{$text->id}}" tabindex="-1" role="dialog" aria-labelledby="titleLabel">
          <div class="modal-dialog" role="document">
            <div class="modal-content">
              <div class="modal-header modal-header-success">
                <button type="button" class="close btn btn-primary" data-dismiss="modal" aria-label="Close">
                <span aria-hidden="true">&times;</span></button>
                <h4 class="modal-title" id="titleLabel">New Content</h4>
              </div>
              <div class="modal-body">
                <div class="row">
                  <div class ="col-md-2 col-lg-7">
                    <div style="display: inline">
                      <div class="form-group">
                          <form action="{{ url('updateText/'.$text->id) }}" enctype="multipart/form-data" method="POST">
                           {{ csrf_field() }}
                          <label>Title Header</label>
                          <input type= "text" name = "title_header"value =" {{ $text->text_header}}" class = "form-control"></input>
                      </div>
                    </div>
                    <div class ="col-md-4 col-lg-9">
                      <div class="form-group">
                          <label>Title Description</label>
                          <textarea style="resize:none"> {{ $text->text_description}}</textarea>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
              <div class="modal-footer">
                <button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>&nbsp;
                <span class="pull-right">
                   <button type="submit" class="btn btn-success">Update</button>
                </span>
              </form>
              </div>
            </div>
          </div>
        </div>
        <td>{{ $text->updated_at}}</td>
        <td>{{ $text->created_at}}</td>

      </tr>

      @endforeach
      {{ $data->links() }}

    </tbody>
  </table>
</div>
@stop

Controller

public function updateText(Request $request, $id)
{

    $result = $request->all();
    $test = $result->save();
    print_r($test);die;

    Session::flash('flash_message', 'Task successfully added!');

    return redirect()->back();
}

Route

Route::post('updateText/{id}','AdministratorController@updateText');
  • der Fehler ist einfach. wo wollen Sie eigentlich sparen?
  • In mein Modell??
  • Sie finden das Objekt aus der db und erstellen Sie ein Modell-Objekt und der Aufruf speichern-Methode auf das Objekt
InformationsquelleAutor Angel | 2017-01-08
Schreibe einen Kommentar