前提・実現したいこと
Laravelを用いて、親子関係にあるテーブルへ同時にレコードを挿入したいです。
親テーブルをpeopleテーブル(person_id(primary,auto),name, text)、子テーブルをBooksテーブル(book_id(primary, auto),person_id(FK),author, title)とした時に、peopleテーブルと、そのリレーション先であるBooksテーブルへそれぞれ新しいレコードを追加したいのですが、peopleテーブルのレコードだけしか挿入されません。Boooksテーブルにもレコードを挿入させるにはどうすれば良いですか?
発生している問題・エラーメッセージ
該当のソースコード
php
1//view/create.blade.php 2//配列としてpostしています 3@section('content') 4 <form action="create" method="post"> 5 @csrf 6 <p>名前</p> 7 <input type="text" name="newdata[person][name]" maxlength="50"> 8 <p>自己紹介</p> 9 <textarea type="text" name="newdata[person][text]" maxlength="200" ></textarea> 10 <p>好きな本を追加</p> 11 <table> 12 <tr> 13 <th>番号</th> 14 <th>作者名</th> 15 <th>作品名</th> 16 </tr> 17 <tr> 18 <th>1</th> 19 <th><input type="text" name="newdata[book][0][author]" maxlength=50></th> 20 <th><input type="text" name="newdata[book][0][title]" maxlength=50></th> 21 </tr> 22 <tr> 23 <th>2</th> 24 <th><input type="text" name="newdata[book][1][author]" maxlength=50></th> 25 <th><input type="text" name="newdata[book][1][title]" maxlength=50></th> 26 </tr> 27 <tr> 28 <th>3</th> 29 <th><input type="text" name="newdata[book][2][author]" maxlength=50></th> 30 <th><input type="text" name="newdata[book][2][title]" maxlength=50></th> 31 </tr> 32 </table> 33 34 <input type="submit" value="登録"> 35 </form> 36@endsection
php
1<?php 2 3namespace App\Http\Controllers; 4 5use App\Models\Person; 6use App\Models\Book; 7use Illuminate\Http\Request; 8//Controller 9 10 public function store(Request $request) 11 { 12 $newdata=$request->input('newdata'); 13 14 $person=new Person; 15 16 17 $person->name=$newdata['person']['name']; 18 $person->text=$newdata['person']['text']; 19 $person->save(); 20 21 22 foreach($newdata['book'] as $book) 23 { 24 25 $person->getBooks()->author=$book['author']; 26 $person->getBooks()->title=$book['title']; 27 //「getBooks()」を「getBooks」としても結果は同じでした。 28 $person->save(); 29 } 30 31 return view('home.create'); 32 }
php
1<?php 2 3namespace App\Models; 4 5use Illuminate\Database\Eloquent\Model; 6use App\Models\Book; 7 8 9class Person extends Model 10{ 11 protected $primarykey='person_id'; 12 13 protected $guarded=[ 14 'person_id', 15 ]; 16 17 public function getBooks() 18 { 19 return $this->hasMany('App\Models\Book','person_id','person_id'); 20 } 21}
試したこと
下のようにコントローラーを修正したところ、person_idがNUllになっていてBooksテーブルにレコードを挿入できないとエラーが出ました。
php
1<?php 2 3namespace App\Http\Controllers; 4 5use App\Models\Person; 6use App\Models\Book; 7use Illuminate\Http\Request; 8//Controller 9 10public function store(Request $request) 11 { 12 $newdata=$request->input('new data'); 13 14 $person=new Person; 15 16 $person->name=$newdata['person']['name']; 17 $person->text=$newdata['person']['text']; 18 19 20 21 22 foreach($newdata['book'] as $book) 23 { 24 $person->getBooks()->saveMany([ 25 new Book(['author'=>$book['author']]), 26 new Book(['title'=>$book['title']]), 27 new Book(['person_id'=>$person->person_id]) 28 ]); 29 } 30 31 $person->save(); 32 33 return view('home.create'); 34 }
補足情報(FW/ツールのバージョンなど)
いただいたご指摘をもとに、以下のように変更したところ、
Argument 1 passed to Illuminate\Database\Eloquent\Relations\HasOneOrMany::save() must be an instance of Illuminate\Database\Eloquent\Model, array given
とエラーが出てしまいました。
php
1<?php 2 3namespace App\Http\Controllers; 4 5use App\Models\Person; 6use App\Models\Book; 7use Illuminate\Http\Request; 8//Controller 9 10public function store(Request $request) 11 { 12 $newdata=$request->input('new data'); 13 14 $person=new Person; 15 16 $person->name=$newdata['person']['name']; 17 $person->text=$newdata['person']['text']; 18 $person->save(); 19 20 21 foreach($newdata['book'] as $book) 22 { 23 $person->getBooks()->saveMany([ 24 new Book([ 25 'author'=>$book['author'], 26 'title'=>$book['title'], 27 'person_id'=>$person->person_id 28 ]); 29 } 30 31 32 33 return view('home.create'); 34 }
ここにより詳細な情報を記載してください。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/30 10:07
2020/05/01 04:33