add nova
This commit is contained in:
20
nova/src/Macros/FirstDayOfPreviousQuarter.php
Normal file
20
nova/src/Macros/FirstDayOfPreviousQuarter.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace Laravel\Nova\Macros;
|
||||
|
||||
use Illuminate\Support\Carbon;
|
||||
|
||||
class FirstDayOfPreviousQuarter
|
||||
{
|
||||
/**
|
||||
* Execute the macro.
|
||||
*
|
||||
* @return \DateTimeInterface
|
||||
*/
|
||||
public function firstDayOfPreviousQuarter()
|
||||
{
|
||||
return function ($timezone = 'UTC') {
|
||||
return Carbon::now($timezone)->subQuarterWithoutOverflow()->startOfQuarter();
|
||||
};
|
||||
}
|
||||
}
|
||||
21
nova/src/Macros/FirstDayOfQuarter.php
Normal file
21
nova/src/Macros/FirstDayOfQuarter.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Laravel\Nova\Macros;
|
||||
|
||||
use Illuminate\Support\Carbon;
|
||||
|
||||
class FirstDayOfQuarter
|
||||
{
|
||||
/**
|
||||
* Execute the macro.
|
||||
*
|
||||
* @param string $timezone
|
||||
* @return \DateTimeInterface
|
||||
*/
|
||||
public function firstDayOfQuarter()
|
||||
{
|
||||
return function ($timezone = 'UTC') {
|
||||
return Carbon::now($timezone)->startOfQuarter();
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user