in Laravel i can get value of two column in one table in this code
$customerName = Customer::where('id', '=', Input::get('customerID'))->first()->customer_name;
$created_at = Customer::where('id', '=', Input::get('customerID'))->first()->created_at;
i want to know that how to get this two value (customer_name and created_at) in one query