I'm from Indonesia, and I want to show date with Indonesian language format but what I've got was English language format.
Example format was 23 march 2017 (english)
I want to get like this one 23 Maret 2017 (Indonesia) so the problem of mine is language.
Can you give me some idea ? this is my example code
<?php echo date("d F Y", strtotime($row->tanggal_pelaksanaan)); ?>
and
Tgl: @foreach ($tindak as $tindakan)
{{ date("d F Y", strtotime($tindakan->target_verifikasi)) }}
@endforeach
Please Kindly help me. thank you.