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 :: laravel create request 
Php :: check laravel first null 
Php :: wordpress get id from page title 
Php :: model with migration laravel 
Php :: format date laravel timestamp view 
Php :: how to combine variables and text into a string php 
Php :: how to calculate percentage profile completion in laravel 
Php :: wp_query post id 
Php :: call to a member function setcookie() on null laravel middleware 
Php :: wordpress add meta user 
Php :: bindparam php 
Php :: array pop php 
Php :: cviebrock/eloquent-sluggable 
Php :: insert key-value pair into array php 
Php :: General error: 1390 Prepared statement contains too many placeholders 
Php :: laravel 8 query builder 
Php :: ubuntu install php 
Php :: add shortcode in wordpress 
Php :: Delete quotes in php 
Php :: php showing code in browser 
Php :: php image resize 
Php :: php array subset by slicing 
Php :: valid image extensions in php 
Php :: grouping routes based on controller 
Php :: php using composer autoload - own code 
Php :: foreign key in php 
Php :: laravel logger 
Php :: laravel compare date timestamp 
Php :: php hello world program 
Php :: pdf to image php 
ADD CONTENT
Topic
Content
Source link
Name
5+1 =