Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
167 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 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...