こんにちは以下は私の関係です
ユーザーモデル
public function loginlogout()
{
$this->HasMany("App\Models\LoginLogoutLogs");
}
これは私のLoginLogoutLogs Model
public function users()
{
return $this->belongsTo('App\Models\User');
}
このようなユーザーから名前にアクセスしようとしています
$loginLogoutLogs = LoginLogoutLogs::all();
foreach($loginLogoutLogs as $loginLogoutLog){
dd($loginLogoutLog->users()->name);
}
しかし、私はこのエラーを受けています
未定義のプロパティ:Illuminate\Database\Eloquent\Relations\BelongsTo :: $ name
EDITモデルの追加
<?php
namespace App\Models;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Zizaco\Entrust\Traits\EntrustUserTrait;
use Session;
use Illuminate\Support\Facades\DB;
class User extends Authenticatable
{
use Notifiable;
use EntrustUserTrait;
protected $table = 'tbl_users';
protected $primaryKey = 'id';
protected $guarded = ['id'];
const API = 'api';
const WEB = 'web';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password', 'last_login', 'Address', 'Age', 'DateOfBirth', 'created_by', 'deleted_by'
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
protected $casts = [
'is_admin' => 'boolean',
];
public function isAdmin()
{
return $this->is_admin;
}
static function GetUserNamebyID($id)
{
$name = User::select("name")->where(["id" => $id])->pluck('name');
if (isset($name[0])) {
return $name[0];
} else {
return '';
}
}
public function loginlogout()
{
$this->HasMany("App\Models\LoginLogoutLogs", 'userID');
}
public function company()
{
$this->HasMany("App\Models\Company");
}
}
そして今LoginLogoutsモデル
<?php
namespace App\Models;
use Illuminate\Notifications\Notifiable;
use Zizaco\Entrust\Traits\EntrustUserTrait;
use Illuminate\Database\Eloquent\Model;
use Session;
use Illuminate\Support\Facades\DB;
class LoginLogoutLogs extends Model
{
use Notifiable;
use EntrustUserTrait;
protected $table = 'tbl_users_logs';
protected $primaryKey = 'id';
protected $guarded = ['id'];
const API = 'api';
const WEB = 'web';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'userID','is_accpeted','type','addedFrom'
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
protected $casts = [
'is_admin' => 'boolean',
];
public function isAdmin()
{
return $this->is_admin;
}
// change company to hasmany
public function user()
{
return $this->belongsTo('App\Models\User');
}
}
単にあなたの部分を変える
dd($loginLogoutLog->users()->name);
に
dd($loginLogoutLog->users->name);
ユーザーのブラケットを削除すると、簡単に修正できます。ここでは、関数ではなくプロパティを取得します...(モデルでは関数として定義されていますが)
簡単な修正:
_$loginLogoutLogs = LoginLogoutLogs::all();
foreach($loginLogoutLogs as $loginLogoutLog){
dd($loginLogoutLog->users->name);
}
_
関係モデルではなく、関係エンティティにアクセスしたい。
users()
を使用すると、コードは、users
クラスのusers
メソッドではなく、LoginLogoutLogs
モデルのname()
メソッドを呼び出そうとしていると見なします。
LoginLogoutLogs
に外部キーを追加するユーザーとの関係を変更する必要があります:
public function user()
{
return $this->belongsTo('App\Models\User', 'userID');
}
また、ユーザーの代わりにユーザーを呼び出すようにしてください
$loginLogoutLogs = LoginLogoutLogs::all();
foreach($loginLogoutLogs as $loginLogoutLog){
dd($loginLogoutLog->user->name);
}
そして、あなたが熱心なロードを実行したい場合:
$loginLogoutLogs = LoginLogoutLogs::with('user')->get();
foreach($loginLogoutLogs as $loginLogoutLog){
dd($loginLogoutLog->user->name);
}