DateTime::__construct(): Failed to parse time string (20/08/2018) at position 0 (2): Unexpected character code example
Example: Could not parse DateTime::__construct(): Failed to parse time string at position 0 (2): Unexpected character
laravel update updated_at when seconds are not available use :
Carbon::createFromFormat()
Example :
$request->filled('order_date') ?
Carbon::createFromFormat('d/m/Y H:i', $request->get('order_date')) : null,