Search
 
SCRIPT & CODE EXAMPLE
 

PHP

human readable date laravel

$object->updated_at->diffForHumans();
Comment

laravel human readable date

<?php

$date = Carbon::now();

echo $date->toDateString();
// 2020-06-22

echo $date->toDateTimeString();
// 2020-06-22 19:45:23

echo $date->toFormattedDateString();
// Jun 22, 2020

echo $date->toTimeString();
// 19:45:23

echo $date->toDayDateTimeString();
// Mon, Jun 22, 2020 7:45 PM

echo Carbon::now()->subDays(5)->diffForHumans();
// 5 days ago

echo Carbon::now()->subDays(24)->diffForHumans();
// 3 weeks ago

echo Carbon::now()->subMonth()->diffForHumans();
// 1 month ago

echo Carbon::create('2020')->longRelativeDiffForHumans('2018');
// 5 months 3 weeks 19 hours 40 minutes 54 seconds ago
Comment

PREVIOUS NEXT
Code Example
Php :: laravel model without timestamps 
Php :: tinker color auto 
Php :: how to make a php info 
Php :: php start session if not started 
Php :: php error 
Php :: php remove last char from string 
Php :: wpdb last query 
Php :: Class "AppHttpControllersAuth" not found 
Php :: php artisan serve port 
Php :: timestamp false in laravel 
Php :: php sigmoid function 
Php :: check if user is on mobile php 
Php :: create folder php 
Php :: php convert string to date 
Php :: php read csv file line by line 
Php :: rout debug symfony command 
Php :: create model in laravel command line 
Php :: how to use old for select in blade laravel 
Php :: whereNull in laravel 
Php :: composer install –ignore-platform-reqs 
Php :: wordpress wp_query orderby random 
Php :: phpexcel set font color 
Php :: how to populate dropdown list with array values in php 
Php :: codeigniter last insert id 
Php :: disable wordpress admin bar 
Php :: check the php version in ubuntu 
Php :: row count in codeigniter 
Php :: php array in cookie 
Php :: wpml get current language filter 
Php :: get stock product woocommerce by id 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =