{{ date('d-m-Y', strtotime($project->start_date)) }}
{{ date('d-m-Y h:i:s', strtotime($project->start_date)) }}
{{ date('h:i:s', strtotime($project->start_date)) }}
{{ (strtotime($project->start_date) < time()) ? 'text-danger' : '' }}
//before
$data->created_at; // 2021-12-14 00:00:00
//after
$data->created_at->format('Y-m-d'); //2021-12-14
$data->created_at->format('H:i:s'); //00:00:00
//laravel method 1
{{ $data->created_at->isoFormat('dddd D') }}
//laravel method 2
{!! date('d/M/y', strtotime($data->created_at)) !!}
{{CarbonCarbon::createFromFormat('H:i:s',$time)->format('h:i')}}
{{$item->date_seance->format('d/m/Y') }}
{{date('H:i', strtotime($item->start_time)) }}
// in model
protected $casts = [
'date_of_approval' => 'date:d-m-Y'
];
// if you want change format any where
$appointment->date_of_approval->format('Y-m-d');
// if you have not cast in model data format
CarbonCarbon::parse($appointment->date_of_approval)->format('Y-m-d');
now()->addDays()->format('Y-m-d H:i:s') // return '2022-8-22 9:12:13'
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$('.date').datepicker();
});
</script>
{{ $post->created_at->diffForHumans() }}
/*
//Output
Arya Stuck 14 minutes ago
Post something
Mizan Khan 23 hours ago
Post something
*/
'date_format:d/m/Y';
{!! htmlspecialchars_decode(date('j<sup>S</sup> F Y', strtotime('21-05-2020'))) !!}