I want to print the name of the current date in laravel 5.3. I can get the current date in following ways:
<?php use Carbon\Carbon;
$carbon=Carbon::now();
echo $carbon->day;?>
The above code prints 25 but I want it to print Thursday.How should I do that??
