Created
January 18, 2018 00:14
-
-
Save dwihujianto/efc5456e449030e56215b0c82760d8b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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