Ich versuche, das Benutzermodell um eine weitere Tabelle (Profil) zu erweitern, um das Profilbild, den Standort usw. abzurufen.
Kann ich dazu die Funktion index()
des Benutzermodells überschreiben?
Aktueller Modellcode:
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Laravel\Sanctum\HasApiTokens; class User extends Authenticatable { use HasApiTokens, HasFactory, Notifiable; protected $fillable = [ 'name', 'email', 'password', 'user_group' ]; protected $hidden = [ 'password', 'remember_token', ]; protected $casts = [ 'email_verified_at' => 'datetime', ]; }
您想要做的是在
User
模型和新的Profile
模型之间建立关系。为此,您首先需要创建一个模型Profile
及其关联的 Tabbleprofiles
php artisan make:model Profile --migration
在
的文件database\migrations
中应该有一个名为2022_11_28_223831_create_profiles_table.php
现在您需要添加一个外键来指示此配置文件属于哪个用户。
现在在您的用户模型中添加以下函数
在您的个人资料模型中
运行
php artisan migrate
,一切都应该按预期工作如果您想测试关系是否按预期工作,请创建一个新的测试用例
php artisan make:test ProfileUserRelationTest
在
tests\Feature\ProfileUserRelationTest.php
现在您可以运行
php artisan test
来查看是否一切正常。小心这会刷新您的数据库!所以不要在生产中进行测试。
输出应该是这样的
了解有关 Laravel 中关系的更多信息:https://laravel.com/docs/ 9.x/雄辩关系
了解有关迁移的更多信息:https://laravel.com/docs/9.x/迁移
替代方案