I'm getting date and time from the api. I want to change the date and time format.
I'm getting like this "2016-05-12","07:17:35".
Change the format like 12-may-2016 7:30 PM:
<table class="table">
<thead>
<tr>
<th>Time</th>
<th>Place</th>
</tr>
</thead>
<tbody ng-repeat="l in dataget">
<tr>
<td>{{l['time']}}</td>
<td>{{l['place']}}</td>
</tr>
</tbody>
</table>