Advertisement
juliarnasution

jenssegers date

Feb 8th, 2019
2,874
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Http\Controllers;
  4.  
  5. use Illuminate\Http\Request;
  6. use Jenssegers\Date\Date;
  7.  
  8. class KwitansiController extends Controller
  9. {
  10.    
  11.     public function print($id)
  12.     {
  13.         Date::setLocale('id');//id kode untuk indonesia
  14.         $tgl_hari_ini = Date::now()->format('j F Y');
  15.         echo $tgl_hari_ini;
  16.         //hasilnya adalah 8 Februari 2019
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement