change current date format
This commit is contained in:
@ -447,10 +447,10 @@
|
||||
|
||||
// dd($fasilitas);
|
||||
$signer = Signer::where('id', $request['signerId'])->where('status',1)->get();
|
||||
$currentDate = Carbon::parse($request['startDate2']);
|
||||
$tanggalIndonesia = $currentDate->locale('id')->isoFormat('D MMMM YYYY');
|
||||
$tanggalIndonesia = strtoupper($tanggalIndonesia); // Mengubah seluruh string menjadi huruf besar
|
||||
$today = $currentDate->format("d-m-Y");
|
||||
$batchDate = Carbon::parse($request['startDate2']);
|
||||
$currentDate = Carbon::now();
|
||||
$tanggalIndonesia = strtoupper($batchDate->locale('id')->isoFormat('D MMMM YYYY')); // Mengubah seluruh string menjadi huruf besar
|
||||
$today = strtoupper($currentDate->locale('id')->isoFormat('D MMMM YYYY'));
|
||||
$letter = new Letters;
|
||||
$infoSuratNew = $letter->where('no_cif',$request['cusNo'])->orderBy('id','DESC')->first();
|
||||
|
||||
|
Reference in New Issue
Block a user