You've already forked Epicnabbo-Catalogus-Updated-Daily
16 lines
319 B
PHP
16 lines
319 B
PHP
<?php
|
|
|
|
namespace App\Models\Game\Player;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class MessengerFriendship extends Model
|
|
{
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'user_two_id', 'id');
|
|
}
|
|
}
|