firstname and lastname cancatinate in laravel code example
Example: how to pluck fullname database laravel
public function getFullNameAttribute()
{
return "{$this->first_name} {$this->last_name}";
}
$agents = User::whereId($agent->id)->get()->pluck('full_name', 'id');
$agents = json_decode(json_encode($agents), true);