├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── SECURITY.md ├── dependabot.yml └── workflows │ ├── dependabot-auto-merge.yml │ ├── fix-php-code-style-issues.yml │ ├── phpstan.yml │ └── update-changelog.yml ├── .gitignore ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── TODO.md ├── composer.json ├── images └── filament-date-scopes-filter.png ├── phpstan-baseline.neon ├── phpstan.neon.dist ├── phpunit.xml ├── resources └── lang │ ├── ar │ └── date-scope.php │ └── en │ └── date-scope.php ├── src ├── DateScope.php ├── DateScopeFilter.php ├── FilamentDateScopesFilterServiceProvider.php └── ScopeGroup.php └── tests ├── DateScopeFilterTest.php ├── Pest.php └── TestCase.php /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/fix-php-code-style-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/.github/workflows/fix-php-code-style-issues.yml -------------------------------------------------------------------------------- /.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /.github/workflows/update-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/.github/workflows/update-changelog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | .idea -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/TODO.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/composer.json -------------------------------------------------------------------------------- /images/filament-date-scopes-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/images/filament-date-scopes-filter.png -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/phpunit.xml -------------------------------------------------------------------------------- /resources/lang/ar/date-scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/resources/lang/ar/date-scope.php -------------------------------------------------------------------------------- /resources/lang/en/date-scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/resources/lang/en/date-scope.php -------------------------------------------------------------------------------- /src/DateScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/src/DateScope.php -------------------------------------------------------------------------------- /src/DateScopeFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/src/DateScopeFilter.php -------------------------------------------------------------------------------- /src/FilamentDateScopesFilterServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/src/FilamentDateScopesFilterServiceProvider.php -------------------------------------------------------------------------------- /src/ScopeGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aymanalhattami/filament-date-scopes-filter/HEAD/src/ScopeGroup.php -------------------------------------------------------------------------------- /tests/DateScopeFilterTest.php: -------------------------------------------------------------------------------- 1 |