|ProfileAlias newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|ProfileAlias newQuery() * @method static \Illuminate\Database\Eloquent\Builder|ProfileAlias query() * @method static \Illuminate\Database\Eloquent\Builder|ProfileAlias whereAcct($value) * @method static \Illuminate\Database\Eloquent\Builder|ProfileAlias whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|ProfileAlias whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|ProfileAlias whereProfileId($value) * @method static \Illuminate\Database\Eloquent\Builder|ProfileAlias whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|ProfileAlias whereUri($value) * * @mixin \Eloquent */ class ProfileAlias extends Model { use HasFactory; protected $guarded = []; public function profile() { return $this->belongsTo(Profile::class); } }