Guys how to change the date format in laravel
When choose from date it stores in (yyyy-mm-dd) in this format in php my admin
this is my insert form date label
<div class="col-sm-4">
{{ Form::label('date','Date') }}
{{ Form::date('date',null,array('class'=>'form-control')) }}
</div>
When I retirve all the record from the table and display in my view file it displays the date in same( yyyy-mm-dd) format.
this is my view.blade
@foreach($pays as $pay)
<tr>
<td>{{ $pay->date }}</td>
</tr>
I need to display in dd-mm-yyyy format. How to do this?
Kindly someone help please