I am trying to fill a select query column with dummy data with laravel query builder. The raw sql would be something like this.
SELECT CustomerName, 'Empty' as Address
FROM Customers;
In laravel
$customers = DB::table('customers')
->select(CustomerName, ''Empty' as Address')->get();
or
$customers = DB::table('customers')
->select(CustomerName, 'Empty as Address')->get();
sadly does not work.