├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── extended.php ├── pint.json ├── resources └── views │ └── .gitkeep └── src ├── DatabaseQueryBuilder ├── BoundaryConstraints.php └── ConditionalConstraints.php ├── LaravelExtendedServiceProvider.php ├── Mixins ├── BuilderMixin.php ├── StrMixin.php └── StringableMixin.php └── Support ├── CallInClosure.php ├── Enums ├── HasName.php └── HasValue.php └── InteractsWithDatabase.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/composer.json -------------------------------------------------------------------------------- /config/extended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/config/extended.php -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/pint.json -------------------------------------------------------------------------------- /resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DatabaseQueryBuilder/BoundaryConstraints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/src/DatabaseQueryBuilder/BoundaryConstraints.php -------------------------------------------------------------------------------- /src/DatabaseQueryBuilder/ConditionalConstraints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/src/DatabaseQueryBuilder/ConditionalConstraints.php -------------------------------------------------------------------------------- /src/LaravelExtendedServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/src/LaravelExtendedServiceProvider.php -------------------------------------------------------------------------------- /src/Mixins/BuilderMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/src/Mixins/BuilderMixin.php -------------------------------------------------------------------------------- /src/Mixins/StrMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/src/Mixins/StrMixin.php -------------------------------------------------------------------------------- /src/Mixins/StringableMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/src/Mixins/StringableMixin.php -------------------------------------------------------------------------------- /src/Support/CallInClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/src/Support/CallInClosure.php -------------------------------------------------------------------------------- /src/Support/Enums/HasName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/src/Support/Enums/HasName.php -------------------------------------------------------------------------------- /src/Support/Enums/HasValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/src/Support/Enums/HasValue.php -------------------------------------------------------------------------------- /src/Support/InteractsWithDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onursimsek/laravel-extended/HEAD/src/Support/InteractsWithDatabase.php --------------------------------------------------------------------------------