Skip to content

Instantly share code, notes, and snippets.

@dwihujianto
Created January 18, 2018 00:14
Show Gist options
  • Select an option

  • Save dwihujianto/efc5456e449030e56215b0c82760d8b3 to your computer and use it in GitHub Desktop.

Select an option

Save dwihujianto/efc5456e449030e56215b0c82760d8b3 to your computer and use it in GitHub Desktop.
<?php
use Carbon\Carbon;
function prettyDate($date)
{
setlocale(LC_TIME, 'id_ID.UTF-8');
return (new Carbon($date, config('app.timezone')))->formatLocalized('%A, %e %B %Y');
}
function dateDFY($date)
{
setlocale(LC_TIME, 'id_ID.UTF-8');
return (new Carbon($date, config('app.timezone')))->formatLocalized('%e %B %Y');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment