I am trying to get hours and minutes and seconds in blade, normally I use like below
{{$calllog['delivery_date']}}
but now my requirement is to get hours and minutes and seconds. here is how I tried to get
$calllog['delivery_date']->todatestring()}}
Yeah, I think I misuse for this function, can someone help me out? I am new in Laravel. Any help would be greatly appreciated.
{{ $calllog['delivery_date']->format('H:i:s') }}
? – Eshelman