turtle-wow-source-kinda/Dumps/Source Code/8 - Development_website/develop/app/Models/characters/CharacterHomebind.php
Brian Oost a1d5bb70b2 Init
2024-08-06 18:06:40 +02:00

28 lines
505 B
PHP

<?php
namespace App\Models\characters;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class CharacterHomebind extends Model
{
use HasFactory;
protected $table = 'character_homebind';
protected $fillable = [
'guid',
'map',
'zone',
'position_x',
'position_y',
'position_z'
];
public function character()
{
return $this->belongsTo(Character::class, 'guid', 'guid');
}
}