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

Change date format on view - laravel

<td>{{ date('d-M-y', strtotime($expenses->date)) }}</td>
Comment

PREVIOUS NEXT
Code Example
Php :: how to create an associative array in php 
Php :: laravel checkbox checked 
Php :: delete route method in laravel 
Php :: php get src content from image tag 
Php :: laravel 8 try catch 
Php :: Unable to connect with STARTTLS: stream_socket_enable_crypto(): SSL operation failed with code 1 
Php :: add item to array in php 
Php :: php print_r 
Php :: clear cache command in laravel controller 
Php :: eloquent limit 
Php :: how to get just the first row from a table in laravel 
Php :: add access-control-allow-origin header laravel 
Php :: php compare two arrays of objects 
Php :: next year php string 
Php :: how to insert multiple selected 
Php :: install tymon jwt laravel 
Php :: laravel add attribute to model 
Php :: get csv file from server folder in PHP 
Php :: if condition view page of laravel 
Php :: update php version in laravel 
Php :: set cookie one day php 
Php :: php array remove keys keep values 
Php :: Laravel adding Foreign Key Constraints 
Php :: php sort hight to low 
Php :: laravel softdelete migration 
Php :: write test case in react native 
Php :: laravel return view in web.php 
Php :: laravel without global scopes 
Php :: yii2 jquery head 
Php :: php new object 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =