<?php
Code 1
value="{{date('d-m-Y h:i:s', strtotime($current_start_break->starttime))}}"
// output 26-08-2021 03:01:44
Code 2
$Date = $date = Carbon::parse(now())->format('F-Y');
//output September-2021
Code 3
$created_at->format('l j F Y'); // Monday 4 July 2016
Comments
Post a Comment