Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
166 views
in Technique[技术] by (71.8m points)

php - Laravel - Merge "phone" and "telephone" into the same field

I am trying to merge different column names like "phone" and "telephone" into one in Laravel.

I also want to do it for "first_name" and "firstname", etc

In my table I have rows with phone and others with telephone. Here is my line to get the data :

$landing_datas =  AppLandingData::whereIn('landing_id', $landinds_ids)->orderBy('updated_at', 'desc');

How could I achieve what I want to do please ?

question from:https://stackoverflow.com/questions/65859626/laravel-merge-phone-and-telephone-into-the-same-field

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

If you want to merge them into one column in your database do it like described by M Khalid Junaid.

You can also define an accessor to join both numbers

public function getPhoneNumberAttribute(): string
{
    return "{$this->phone}, {$this->telephone}";
}

and then you can access it via $model->phone_number.

This, of course, is only applicable if you want to display them properly in Laravel and does not solve the issue with having them in multiple columns.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

57.0k users

...