Search
 
SCRIPT & CODE EXAMPLE
 

PHP

how to change date formate in laravel

date("D M j G:i:s T Y")."<br>";             // Sat Mar 22 17:16:18 MST 2001
date('H:m:s m is mo
	h')."<br>";   // 18:03:18 m is month
date("H:i:s")."<br>";                       // 18:16:18
date("Y-m-d H:i:s")."<br>";                 // 2022-03-11 18:16:18 (MySQL DATETIME format)
date("j F, Y, g:i a")."<br>";               // 11 March, 2022, 6:16 pm
date("m.d.y")."<br>";                       // 03.11.01
date("j, n, Y")."<br>";                     // 11, 3, 2001
date("Ymd")."<br>";                         // 20010310
date('h-i-s, j-m-y, it is w Day')."<br>";   // 02-12-18, 10-03-01, 1631 1618 6 Satpm01
date('i	 is 	he jS day.')."<br>"; // it is the 15th day.
Comment

date format change in laravel

//
$editData->hld_end_date ? date('d-m-Y',strtotime($editData->hld_end_date)) : null // bydefault null

date('d-m-Y',strtotime(str_replace('/', '-', $editData->hld_end_date) //bydefault value is null then 01-01-1970
                       
date_format(date_create($editData->hld_end_date),'d-m-Y') //bydefault value is null then Today date
                       
$editData->hld_end_date->format('d-m-Y') // null error
                       
CarbonCarbon::parse($editData->hld_end_date)->format('d/m/Y') //bydefault value is null then 01-01-1970
//$uj@y
Comment

date format change in laravel blade

{{date_format($data->con_date_maintained,'D M Y')}}

{{ $data->con_wash_start_date == null ? date_format($data->con_date_maintained,'D M Y') : "-" }}
//$uj@y
Comment

change the date format in laravel view page

// date('d-m-Y', strtotime($user->from_date));

public function convertDate($date,$format = 'd-m-Y'){
	return date($format, strtotime($date));
}
or
public function convertDate($date,$format = 'd/m/Y'){
        return CarbonCarbon::parse($date)->format($format);
}
$user->convertDate($user->from_date);
//$user->convertDate($user->from_date,'Y-m-d'); with format 

Comment

laravel set date format

{{ $post->created_at->diffForHumans() }}
  /*
  	//Output
  Arya Stuck 14 minutes ago
  Post something 
  
  Mizan Khan 23 hours ago
  Post something
  */
Comment

PREVIOUS NEXT
Code Example
Php :: routing code in drupal 8 
Php :: composer create project laravel 
Php :: associative array sorting by value in php 
Php :: remove notices php 
Php :: 15000 tl to usd 
Php :: wordpress max post revision 
Php :: laravel eloquent select one column 
Php :: delete uploaded file php 
Php :: laravel multiple where conditions 
Php :: how to create wordpress shortcodes 
Php :: php empty object 
Php :: yii2 postgresql connection 
Php :: get the full url in php 
Php :: connect to sql database 
Php :: acf repeater 
Php :: how to check using what guard in laravel 8 
Php :: calculate 18 years back date in php 
Php :: laravel withHeaders bearer 
Php :: run shell script from php file 
Php :: php fix array index 
Php :: file storage laravel 
Php :: php pdo database connection 
Php :: php begin 
Php :: laravel where closure 
Php :: codeigniter 3 or where not in 
Php :: crul in laravel 
Php :: array_diff 
Php :: javascript date to php date 
Php :: socialite laravel 7 
Php :: wp_get_attachment alt text 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =