Answers for "how to get current date of date in laravel without carbon"

PHP
1

get current date carbon laravel

use Carbon\Carbon;
$date = Carbon::now();
//Get date and time
$date->toDateTimeString();
//Get date
$date->toDateString();
Posted by: Guest on December-04-2020
0

laravel carbon created_at date in current month

public function myMonthApts()
{
        return $this->appointments()
                        ->whereIn('status_id', [3,4])
                        ->whereYear('created_at', Carbon::now()->year)
                        ->whereMonth('created_at', Carbon::now()->month)
                        ->count();
}
Posted by: Guest on September-13-2021

Code answers related to "how to get current date of date in laravel without carbon"

Browse Popular Code Answers by Language