Answers for "php time and date carbon"

PHP
14

carbon date from format

Carbon::createFromFormat('Y-m-d H:i:s', $request->date)->format('d-m-Y')
Posted by: Guest on April-26-2020
1

carbon in laravel

use Illuminate\Support\Carbon;
$current = Carbon::now()->format('YmdHms'); //it will give current date and time
Posted by: Guest on December-15-2021

Browse Popular Code Answers by Language