xxxxxxxxxx
now()->addDays()->format('Y-m-d H:i:s') // return '2022-8-22 9:12:13'
xxxxxxxxxx
{{ 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' : '' }}
xxxxxxxxxx
//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
xxxxxxxxxx
//laravel method 1
{{ $data->created_at->isoFormat('dddd D') }}
//laravel method 2
{!! date('d/M/y', strtotime($data->created_at)) !!}
xxxxxxxxxx
// 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
Carbon\Carbon::parse($appointment->date_of_approval)->format('Y-m-d');
xxxxxxxxxx
{{\Carbon\Carbon::createFromFormat('H:i:s',$time)->format('h:i')}}
{{$item->date_seance->format('d/m/Y') }}
{{date('H:i', strtotime($item->start_time)) }}
xxxxxxxxxx
$user = \App\User::find(1);
$newDateFormat = $user->created_at->format('d/m/Y');
dd($newDateFormat);
xxxxxxxxxx
<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>