前提・実現したいこと
laravel8で1対1のリレーションを作成しようとしていますが、うまくいきません。
usersテーブルを主、relationsテーブルを従としています。
従テーブルのデータをgetData()で表示しようとすると以下のエラーが表示されます。
2日間悩んでいます。どなたかご教示お願いします。
発生している問題・エラーメッセージ
Call to a member function getData() on null
該当のソースコード
App\Models\User.php
laravel
1<?php 2 3namespace App\Models; 4 5use Illuminate\Contracts\Auth\MustVerifyEmail; 6use Illuminate\Database\Eloquent\Factories\HasFactory; 7use Illuminate\Foundation\Auth\User as Authenticatable; 8use Illuminate\Notifications\Notifiable; 9use Laravel\Fortify\TwoFactorAuthenticatable; 10use Laravel\Jetstream\HasProfilePhoto; 11use Laravel\Sanctum\HasApiTokens; 12use Illuminate\Database\Eloquent\Model; 13 14class User extends Authenticatable 15{ 16 use HasApiTokens; 17 use HasFactory; 18 use HasProfilePhoto; 19 use Notifiable; 20 use TwoFactorAuthenticatable; 21 22 /** 23 * The attributes that are mass assignable. 24 * 25 * @var array 26 */ 27 protected $fillable = [ 28 'name', 29 'email', 30 'password', 31 'google_id' 32 ]; 33 34 /** 35 * The attributes that should be hidden for arrays. 36 * 37 * @var array 38 */ 39 protected $hidden = [ 40 'password', 41 'remember_token', 42 'two_factor_recovery_codes', 43 'two_factor_secret', 44 ]; 45 46 /** 47 * The attributes that should be cast to native types. 48 * 49 * @var array 50 */ 51 protected $casts = [ 52 'email_verified_at' => 'datetime', 53 ]; 54 55 /** 56 * The accessors to append to the model's array form. 57 * 58 * @var array 59 */ 60 protected $appends = [ 61 'profile_photo_url', 62 ]; 63 64 65 public function relation(){ 66 67 return $this->hasOne('App\Models\Relation'); 68 } 69 70 // index.bladeにデータを送る 71 public function getData(){ 72 73 return $this->id. ':' . $this->name; 74 } 75}
Controllers\UserController.php
laravel
1<?php 2 3namespace App\Http\Controllers; 4 5use Illuminate\Http\Request; 6use App\Models\User; 7 8class UserController extends Controller 9{ 10 public function showUser(Request $request){ 11 $items = User::all(); 12 return view('user.index', ['items' => $items]); 13 } 14 15 16 17 public function showRelationuser(Request $request){ 18 $items = User::all(); 19 return view('user.relation_index', compact('items')); 20 } 21 22}
App\Models\Relation.php
laravel
1<?php 2 3namespace App\Models; 4 5use Illuminate\Database\Eloquent\Factories\HasFactory; 6use Illuminate\Database\Eloquent\Model; 7 8class Relation extends Model 9{ 10 use HasFactory; 11 12 protected $guarded = ['id']; 13 14 15 /** 16 * 新ブログポストの保存 17 * 18 * @param \Illuminate\Http\Request $request 19 * @return \Illuminate\Http\Response 20 */ 21 22 // バリデーションルールの書き方 23 // ルールのような、どのような状況でも中身が変化しないものはpublic staticで書く 24 public static $rules = [ 25 'user_id' => 'required', 26 'title' => 'required', 27 'message' => 'required' 28 ]; 29 30 public function user(){ 31 return $this->belongsTo('App\Models\User'); 32 } 33 34 35 public function getData(){ 36 return $this->title; 37 } 38 39 40 41}
Controllers\RelationController.php
laravel
1<?php 2 3namespace App\Http\Controllers; 4 5use App\Models\Relation; 6use Illuminate\Http\Request; 7 8class RelationController extends Controller 9{ 10 public function index(Request $request){ 11 $items = Relation::all(); 12 return view('Relation.index', ['items' => $items]); 13 } 14 15 public function add(Request $request){ 16 17 return view('Relation.add'); 18 } 19 20 public function create(Request $request){ 21 22 $this->validate($request, Relation::$rules); 23 $relation = new Relation; 24 $form = $request->all(); 25 unset($form['_token']); 26 $relation->fill($form)->save(); 27 return redirect('/relation'); 28 } 29 30 31}
resources\views\user\relation_index.php
lalavel
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4 <meta charset="UTF-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <title>リレーション</title> 8</head> 9 10<body> 11 12 13 14 15 16 <!-- Authentication --> 17 <form method="POST" action="{{ route('logout') }}"> 18 @csrf 19 20 <x-jet-dropdown-link href="{{ route('logout') }}" 21 onclick="event.preventDefault(); 22 this.closest('form').submit();"> 23 {{ __('Log Out') }} 24 </x-jet-dropdown-link> 25 </form> 26 27 {{date('Y年m月d日 h:i:s')}}; 28 29<h1>記録</h1> 30 31 32<table> 33<tr><th>User</th><th>Title</th></tr> 34@foreach ($items as $item) 35 <tr> 36 <td>{{$item->getData()}}</td> 37 <td> 38 {{$item->relation->getData()}} 39 </td> 40 </tr> 41@endforeach 42</table> 43 44</body> 45 46</html>
試したこと
- 「resources\views\user\relation_index.php」の「{{$item->relation->getData()}}」に問題があると考え、「relation->」を削除してみると、エラーはなくなりました(従テーブルではなく、主テーブルの情報が表示されただけでしたが)。
- Relationモデルの中のgetData()の中で参照するカラムを変更してみましたが、特に意味はありませんでした。
- tinkerで「User::find(1)->relation;」を実行して、リレーション自体は成功していることを確認済みです。
補足情報(FW/ツールのバージョンなど)
relationsテーブルにはレコードをいくつか追加してあり、テーブルにはデータが存在している状態です。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/23 00:46