How to select only one column in an array
<p>I have an array like below in laravel and I want to extract the columns in it. </p>
<pre class="brush:php;toolbar:false;">Array
(
[0] => Array
(
[table] => form_identification
[column] => region
)
[1] => Array
(
[table] => form_identification
[column] => province
)
)</pre>
<p>I want the output to be as follows</p>
<pre class="brush:php;toolbar:false;">Array
(
[0] => Array
(
[column] => region
)
[1] => Array
(
[column] => province
)
)</pre></p>