Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- namespace App\Http\Controllers;
- use Illuminate\Http\Request;
- use Jenssegers\Date\Date;
- class KwitansiController extends Controller
- {
- public function print($id)
- {
- Date::setLocale('id');//id kode untuk indonesia
- $tgl_hari_ini = Date::now()->format('j F Y');
- echo $tgl_hari_ini;
- //hasilnya adalah 8 Februari 2019
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement