gitextract_o_ww6i4h/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug_report.yml │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── SECURITY.md │ ├── SUPPORT.md │ └── workflows/ │ ├── databases-nightly.yml │ ├── databases.yml │ ├── facades.yml │ ├── issues.yml │ ├── pull-requests.yml │ ├── queues.yml │ ├── redis.yml │ ├── releases.yml │ ├── static-analysis.yml │ ├── tests.yml │ └── update-assets.yml ├── .gitignore ├── .styleci.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── bin/ │ ├── release.sh │ ├── split.sh │ ├── splitsh-lite │ └── test.sh ├── composer.json ├── config/ │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── concurrency.php │ ├── cors.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── config-stubs/ │ └── app.php ├── docker-compose.yml ├── phpstan.src.neon.dist ├── phpstan.types.neon.dist ├── phpunit.xml.dist ├── pint.json ├── src/ │ └── Illuminate/ │ ├── Auth/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Access/ │ │ │ ├── AuthorizationException.php │ │ │ ├── Events/ │ │ │ │ └── GateEvaluated.php │ │ │ ├── Gate.php │ │ │ ├── HandlesAuthorization.php │ │ │ └── Response.php │ │ ├── AuthManager.php │ │ ├── AuthServiceProvider.php │ │ ├── Authenticatable.php │ │ ├── AuthenticationException.php │ │ ├── Console/ │ │ │ ├── ClearResetsCommand.php │ │ │ └── stubs/ │ │ │ └── make/ │ │ │ └── views/ │ │ │ └── layouts/ │ │ │ └── app.stub │ │ ├── CreatesUserProviders.php │ │ ├── DatabaseUserProvider.php │ │ ├── EloquentUserProvider.php │ │ ├── Events/ │ │ │ ├── Attempting.php │ │ │ ├── Authenticated.php │ │ │ ├── CurrentDeviceLogout.php │ │ │ ├── Failed.php │ │ │ ├── Lockout.php │ │ │ ├── Login.php │ │ │ ├── Logout.php │ │ │ ├── OtherDeviceLogout.php │ │ │ ├── PasswordReset.php │ │ │ ├── PasswordResetLinkSent.php │ │ │ ├── Registered.php │ │ │ ├── Validated.php │ │ │ └── Verified.php │ │ ├── GenericUser.php │ │ ├── GuardHelpers.php │ │ ├── LICENSE.md │ │ ├── Listeners/ │ │ │ └── SendEmailVerificationNotification.php │ │ ├── Middleware/ │ │ │ ├── Authenticate.php │ │ │ ├── AuthenticateWithBasicAuth.php │ │ │ ├── Authorize.php │ │ │ ├── EnsureEmailIsVerified.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ └── RequirePassword.php │ │ ├── MustVerifyEmail.php │ │ ├── Notifications/ │ │ │ ├── ResetPassword.php │ │ │ └── VerifyEmail.php │ │ ├── Passwords/ │ │ │ ├── CacheTokenRepository.php │ │ │ ├── CanResetPassword.php │ │ │ ├── DatabaseTokenRepository.php │ │ │ ├── PasswordBroker.php │ │ │ ├── PasswordBrokerManager.php │ │ │ ├── PasswordResetServiceProvider.php │ │ │ └── TokenRepositoryInterface.php │ │ ├── Recaller.php │ │ ├── RequestGuard.php │ │ ├── SessionGuard.php │ │ ├── TokenGuard.php │ │ └── composer.json │ ├── Broadcasting/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── AnonymousEvent.php │ │ ├── BroadcastController.php │ │ ├── BroadcastEvent.php │ │ ├── BroadcastException.php │ │ ├── BroadcastManager.php │ │ ├── BroadcastServiceProvider.php │ │ ├── Broadcasters/ │ │ │ ├── AblyBroadcaster.php │ │ │ ├── Broadcaster.php │ │ │ ├── LogBroadcaster.php │ │ │ ├── NullBroadcaster.php │ │ │ ├── PusherBroadcaster.php │ │ │ ├── RedisBroadcaster.php │ │ │ └── UsePusherChannelConventions.php │ │ ├── Channel.php │ │ ├── EncryptedPrivateChannel.php │ │ ├── FakePendingBroadcast.php │ │ ├── InteractsWithBroadcasting.php │ │ ├── InteractsWithSockets.php │ │ ├── LICENSE.md │ │ ├── PendingBroadcast.php │ │ ├── PresenceChannel.php │ │ ├── PrivateChannel.php │ │ ├── UniqueBroadcastEvent.php │ │ └── composer.json │ ├── Bus/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Batch.php │ │ ├── BatchFactory.php │ │ ├── BatchRepository.php │ │ ├── Batchable.php │ │ ├── BusServiceProvider.php │ │ ├── ChainedBatch.php │ │ ├── DatabaseBatchRepository.php │ │ ├── Dispatcher.php │ │ ├── DynamoBatchRepository.php │ │ ├── Events/ │ │ │ ├── BatchCanceled.php │ │ │ ├── BatchDispatched.php │ │ │ └── BatchFinished.php │ │ ├── LICENSE.md │ │ ├── PendingBatch.php │ │ ├── PrunableBatchRepository.php │ │ ├── Queueable.php │ │ ├── UniqueLock.php │ │ ├── UpdatedBatchJobCounts.php │ │ └── composer.json │ ├── Cache/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── ApcStore.php │ │ ├── ApcWrapper.php │ │ ├── ArrayLock.php │ │ ├── ArrayStore.php │ │ ├── CacheLock.php │ │ ├── CacheManager.php │ │ ├── CacheServiceProvider.php │ │ ├── Console/ │ │ │ ├── CacheTableCommand.php │ │ │ ├── ClearCommand.php │ │ │ ├── ForgetCommand.php │ │ │ ├── PruneStaleTagsCommand.php │ │ │ └── stubs/ │ │ │ └── cache.stub │ │ ├── DatabaseLock.php │ │ ├── DatabaseStore.php │ │ ├── DynamoDbLock.php │ │ ├── DynamoDbStore.php │ │ ├── Events/ │ │ │ ├── CacheEvent.php │ │ │ ├── CacheFailedOver.php │ │ │ ├── CacheFlushFailed.php │ │ │ ├── CacheFlushed.php │ │ │ ├── CacheFlushing.php │ │ │ ├── CacheHit.php │ │ │ ├── CacheLocksFlushFailed.php │ │ │ ├── CacheLocksFlushed.php │ │ │ ├── CacheLocksFlushing.php │ │ │ ├── CacheMissed.php │ │ │ ├── ForgettingKey.php │ │ │ ├── KeyForgetFailed.php │ │ │ ├── KeyForgotten.php │ │ │ ├── KeyWriteFailed.php │ │ │ ├── KeyWritten.php │ │ │ ├── RetrievingKey.php │ │ │ ├── RetrievingManyKeys.php │ │ │ ├── WritingKey.php │ │ │ └── WritingManyKeys.php │ │ ├── FailoverStore.php │ │ ├── FileLock.php │ │ ├── FileStore.php │ │ ├── HasCacheLock.php │ │ ├── LICENSE.md │ │ ├── Limiters/ │ │ │ ├── ConcurrencyLimiter.php │ │ │ ├── ConcurrencyLimiterBuilder.php │ │ │ └── LimiterTimeoutException.php │ │ ├── Lock.php │ │ ├── LuaScripts.php │ │ ├── MemcachedConnector.php │ │ ├── MemcachedLock.php │ │ ├── MemcachedStore.php │ │ ├── MemoizedStore.php │ │ ├── NoLock.php │ │ ├── NullStore.php │ │ ├── PhpRedisLock.php │ │ ├── RateLimiter.php │ │ ├── RateLimiting/ │ │ │ ├── GlobalLimit.php │ │ │ ├── Limit.php │ │ │ └── Unlimited.php │ │ ├── RedisLock.php │ │ ├── RedisStore.php │ │ ├── RedisTagSet.php │ │ ├── RedisTaggedCache.php │ │ ├── Repository.php │ │ ├── RetrievesMultipleKeys.php │ │ ├── SessionStore.php │ │ ├── TagSet.php │ │ ├── TaggableStore.php │ │ ├── TaggedCache.php │ │ └── composer.json │ ├── Collections/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Arr.php │ │ ├── Collection.php │ │ ├── Enumerable.php │ │ ├── HigherOrderCollectionProxy.php │ │ ├── ItemNotFoundException.php │ │ ├── LICENSE.md │ │ ├── LazyCollection.php │ │ ├── MultipleItemsFoundException.php │ │ ├── Traits/ │ │ │ ├── EnumeratesValues.php │ │ │ └── TransformsToResourceCollection.php │ │ ├── composer.json │ │ ├── functions.php │ │ └── helpers.php │ ├── Concurrency/ │ │ ├── .gitattributes │ │ ├── ConcurrencyManager.php │ │ ├── ConcurrencyServiceProvider.php │ │ ├── Console/ │ │ │ └── InvokeSerializedClosureCommand.php │ │ ├── ForkDriver.php │ │ ├── LICENSE.md │ │ ├── ProcessDriver.php │ │ ├── SyncDriver.php │ │ └── composer.json │ ├── Conditionable/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── HigherOrderWhenProxy.php │ │ ├── LICENSE.md │ │ ├── Traits/ │ │ │ └── Conditionable.php │ │ └── composer.json │ ├── Config/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── LICENSE.md │ │ ├── Repository.php │ │ └── composer.json │ ├── Console/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Application.php │ │ ├── Attributes/ │ │ │ ├── Description.php │ │ │ ├── Help.php │ │ │ ├── Hidden.php │ │ │ ├── Signature.php │ │ │ └── Usage.php │ │ ├── BufferedConsoleOutput.php │ │ ├── CacheCommandMutex.php │ │ ├── Command.php │ │ ├── CommandMutex.php │ │ ├── Concerns/ │ │ │ ├── CallsCommands.php │ │ │ ├── ConfiguresPrompts.php │ │ │ ├── CreatesMatchingTest.php │ │ │ ├── FindsAvailableModels.php │ │ │ ├── HasParameters.php │ │ │ ├── InteractsWithIO.php │ │ │ ├── InteractsWithSignals.php │ │ │ └── PromptsForMissingInput.php │ │ ├── ConfirmableTrait.php │ │ ├── ContainerCommandLoader.php │ │ ├── Contracts/ │ │ │ └── NewLineAware.php │ │ ├── Events/ │ │ │ ├── ArtisanStarting.php │ │ │ ├── CommandFinished.php │ │ │ ├── CommandStarting.php │ │ │ ├── SchedulePaused.php │ │ │ ├── ScheduleResumed.php │ │ │ ├── ScheduledBackgroundTaskFinished.php │ │ │ ├── ScheduledTaskFailed.php │ │ │ ├── ScheduledTaskFinished.php │ │ │ ├── ScheduledTaskSkipped.php │ │ │ └── ScheduledTaskStarting.php │ │ ├── GeneratorCommand.php │ │ ├── LICENSE.md │ │ ├── ManuallyFailedException.php │ │ ├── MigrationGeneratorCommand.php │ │ ├── OutputStyle.php │ │ ├── Parser.php │ │ ├── Prohibitable.php │ │ ├── PromptValidationException.php │ │ ├── QuestionHelper.php │ │ ├── Scheduling/ │ │ │ ├── CacheAware.php │ │ │ ├── CacheEventMutex.php │ │ │ ├── CacheSchedulingMutex.php │ │ │ ├── CallbackEvent.php │ │ │ ├── CommandBuilder.php │ │ │ ├── Event.php │ │ │ ├── EventMutex.php │ │ │ ├── ManagesAttributes.php │ │ │ ├── ManagesFrequencies.php │ │ │ ├── PendingEventAttributes.php │ │ │ ├── Schedule.php │ │ │ ├── ScheduleClearCacheCommand.php │ │ │ ├── ScheduleFinishCommand.php │ │ │ ├── ScheduleInterruptCommand.php │ │ │ ├── ScheduleListCommand.php │ │ │ ├── SchedulePauseCommand.php │ │ │ ├── ScheduleResumeCommand.php │ │ │ ├── ScheduleRunCommand.php │ │ │ ├── ScheduleTestCommand.php │ │ │ ├── ScheduleWorkCommand.php │ │ │ └── SchedulingMutex.php │ │ ├── Signals.php │ │ ├── View/ │ │ │ ├── Components/ │ │ │ │ ├── Alert.php │ │ │ │ ├── Ask.php │ │ │ │ ├── AskWithCompletion.php │ │ │ │ ├── BulletList.php │ │ │ │ ├── Choice.php │ │ │ │ ├── Component.php │ │ │ │ ├── Confirm.php │ │ │ │ ├── Error.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Info.php │ │ │ │ ├── Line.php │ │ │ │ ├── Mutators/ │ │ │ │ │ ├── EnsureDynamicContentIsHighlighted.php │ │ │ │ │ ├── EnsureNoPunctuation.php │ │ │ │ │ ├── EnsurePunctuation.php │ │ │ │ │ └── EnsureRelativePaths.php │ │ │ │ ├── Secret.php │ │ │ │ ├── Success.php │ │ │ │ ├── Task.php │ │ │ │ ├── TwoColumnDetail.php │ │ │ │ └── Warn.php │ │ │ └── TaskResult.php │ │ ├── composer.json │ │ └── resources/ │ │ └── views/ │ │ └── components/ │ │ ├── alert.php │ │ ├── bullet-list.php │ │ ├── line.php │ │ └── two-column-detail.php │ ├── Container/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Attributes/ │ │ │ ├── Auth.php │ │ │ ├── Authenticated.php │ │ │ ├── Bind.php │ │ │ ├── Cache.php │ │ │ ├── Config.php │ │ │ ├── Context.php │ │ │ ├── CurrentUser.php │ │ │ ├── DB.php │ │ │ ├── Database.php │ │ │ ├── Give.php │ │ │ ├── Log.php │ │ │ ├── RouteParameter.php │ │ │ ├── Scoped.php │ │ │ ├── Singleton.php │ │ │ ├── Storage.php │ │ │ └── Tag.php │ │ ├── BoundMethod.php │ │ ├── Container.php │ │ ├── ContextualBindingBuilder.php │ │ ├── EntryNotFoundException.php │ │ ├── LICENSE.md │ │ ├── RewindableGenerator.php │ │ ├── Util.php │ │ └── composer.json │ ├── Contracts/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Auth/ │ │ │ ├── Access/ │ │ │ │ ├── Authorizable.php │ │ │ │ └── Gate.php │ │ │ ├── Authenticatable.php │ │ │ ├── CanResetPassword.php │ │ │ ├── Factory.php │ │ │ ├── Guard.php │ │ │ ├── Middleware/ │ │ │ │ └── AuthenticatesRequests.php │ │ │ ├── MustVerifyEmail.php │ │ │ ├── PasswordBroker.php │ │ │ ├── PasswordBrokerFactory.php │ │ │ ├── StatefulGuard.php │ │ │ ├── SupportsBasicAuth.php │ │ │ └── UserProvider.php │ │ ├── Broadcasting/ │ │ │ ├── Broadcaster.php │ │ │ ├── Factory.php │ │ │ ├── HasBroadcastChannel.php │ │ │ ├── ShouldBeUnique.php │ │ │ ├── ShouldBroadcast.php │ │ │ ├── ShouldBroadcastNow.php │ │ │ └── ShouldRescue.php │ │ ├── Bus/ │ │ │ ├── Dispatcher.php │ │ │ └── QueueingDispatcher.php │ │ ├── Cache/ │ │ │ ├── CanFlushLocks.php │ │ │ ├── Factory.php │ │ │ ├── Lock.php │ │ │ ├── LockProvider.php │ │ │ ├── LockTimeoutException.php │ │ │ ├── Repository.php │ │ │ └── Store.php │ │ ├── Concurrency/ │ │ │ └── Driver.php │ │ ├── Config/ │ │ │ └── Repository.php │ │ ├── Console/ │ │ │ ├── Application.php │ │ │ ├── Isolatable.php │ │ │ ├── Kernel.php │ │ │ └── PromptsForMissingInput.php │ │ ├── Container/ │ │ │ ├── BindingResolutionException.php │ │ │ ├── CircularDependencyException.php │ │ │ ├── Container.php │ │ │ ├── ContextualAttribute.php │ │ │ ├── ContextualBindingBuilder.php │ │ │ └── SelfBuilding.php │ │ ├── Cookie/ │ │ │ ├── Factory.php │ │ │ └── QueueingFactory.php │ │ ├── Database/ │ │ │ ├── ConcurrencyErrorDetector.php │ │ │ ├── Eloquent/ │ │ │ │ ├── Builder.php │ │ │ │ ├── Castable.php │ │ │ │ ├── CastsAttributes.php │ │ │ │ ├── CastsInboundAttributes.php │ │ │ │ ├── ComparesCastableAttributes.php │ │ │ │ ├── DeviatesCastableAttributes.php │ │ │ │ ├── SerializesCastableAttributes.php │ │ │ │ └── SupportsPartialRelations.php │ │ │ ├── Events/ │ │ │ │ └── MigrationEvent.php │ │ │ ├── LostConnectionDetector.php │ │ │ ├── ModelIdentifier.php │ │ │ └── Query/ │ │ │ ├── Builder.php │ │ │ ├── ConditionExpression.php │ │ │ └── Expression.php │ │ ├── Debug/ │ │ │ ├── ExceptionHandler.php │ │ │ └── ShouldntReport.php │ │ ├── Encryption/ │ │ │ ├── DecryptException.php │ │ │ ├── EncryptException.php │ │ │ ├── Encrypter.php │ │ │ └── StringEncrypter.php │ │ ├── Events/ │ │ │ ├── Dispatcher.php │ │ │ ├── ShouldDispatchAfterCommit.php │ │ │ └── ShouldHandleEventsAfterCommit.php │ │ ├── Filesystem/ │ │ │ ├── Cloud.php │ │ │ ├── Factory.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── Filesystem.php │ │ │ └── LockTimeoutException.php │ │ ├── Foundation/ │ │ │ ├── Application.php │ │ │ ├── CachesConfiguration.php │ │ │ ├── CachesRoutes.php │ │ │ ├── ExceptionRenderer.php │ │ │ └── MaintenanceMode.php │ │ ├── Hashing/ │ │ │ └── Hasher.php │ │ ├── Http/ │ │ │ └── Kernel.php │ │ ├── JsonSchema/ │ │ │ └── JsonSchema.php │ │ ├── LICENSE.md │ │ ├── Log/ │ │ │ └── ContextLogProcessor.php │ │ ├── Mail/ │ │ │ ├── Attachable.php │ │ │ ├── Factory.php │ │ │ ├── MailQueue.php │ │ │ ├── Mailable.php │ │ │ └── Mailer.php │ │ ├── Notifications/ │ │ │ ├── Dispatcher.php │ │ │ └── Factory.php │ │ ├── Pagination/ │ │ │ ├── CursorPaginator.php │ │ │ ├── LengthAwarePaginator.php │ │ │ └── Paginator.php │ │ ├── Pipeline/ │ │ │ ├── Hub.php │ │ │ └── Pipeline.php │ │ ├── Process/ │ │ │ ├── InvokedProcess.php │ │ │ └── ProcessResult.php │ │ ├── Queue/ │ │ │ ├── ClearableQueue.php │ │ │ ├── EntityNotFoundException.php │ │ │ ├── EntityResolver.php │ │ │ ├── Factory.php │ │ │ ├── Job.php │ │ │ ├── Monitor.php │ │ │ ├── Queue.php │ │ │ ├── QueueableCollection.php │ │ │ ├── QueueableEntity.php │ │ │ ├── ShouldBeEncrypted.php │ │ │ ├── ShouldBeUnique.php │ │ │ ├── ShouldBeUniqueUntilProcessing.php │ │ │ ├── ShouldQueue.php │ │ │ └── ShouldQueueAfterCommit.php │ │ ├── Redis/ │ │ │ ├── Connection.php │ │ │ ├── Connector.php │ │ │ ├── Factory.php │ │ │ └── LimiterTimeoutException.php │ │ ├── Routing/ │ │ │ ├── BindingRegistrar.php │ │ │ ├── Registrar.php │ │ │ ├── ResponseFactory.php │ │ │ ├── UrlGenerator.php │ │ │ └── UrlRoutable.php │ │ ├── Session/ │ │ │ ├── Middleware/ │ │ │ │ └── AuthenticatesSessions.php │ │ │ └── Session.php │ │ ├── Support/ │ │ │ ├── Arrayable.php │ │ │ ├── CanBeEscapedWhenCastToString.php │ │ │ ├── DeferrableProvider.php │ │ │ ├── DeferringDisplayableValue.php │ │ │ ├── HasOnceHash.php │ │ │ ├── Htmlable.php │ │ │ ├── Jsonable.php │ │ │ ├── MessageBag.php │ │ │ ├── MessageProvider.php │ │ │ ├── Renderable.php │ │ │ ├── Responsable.php │ │ │ └── ValidatedData.php │ │ ├── Translation/ │ │ │ ├── HasLocalePreference.php │ │ │ ├── Loader.php │ │ │ └── Translator.php │ │ ├── Validation/ │ │ │ ├── CompilableRules.php │ │ │ ├── DataAwareRule.php │ │ │ ├── Factory.php │ │ │ ├── ImplicitRule.php │ │ │ ├── InvokableRule.php │ │ │ ├── Rule.php │ │ │ ├── UncompromisedVerifier.php │ │ │ ├── ValidatesWhenResolved.php │ │ │ ├── ValidationRule.php │ │ │ ├── Validator.php │ │ │ └── ValidatorAwareRule.php │ │ ├── View/ │ │ │ ├── Engine.php │ │ │ ├── Factory.php │ │ │ ├── View.php │ │ │ └── ViewCompilationException.php │ │ └── composer.json │ ├── Cookie/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── CookieJar.php │ │ ├── CookieServiceProvider.php │ │ ├── CookieValuePrefix.php │ │ ├── LICENSE.md │ │ ├── Middleware/ │ │ │ ├── AddQueuedCookiesToResponse.php │ │ │ └── EncryptCookies.php │ │ └── composer.json │ ├── Database/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Capsule/ │ │ │ └── Manager.php │ │ ├── ClassMorphViolationException.php │ │ ├── Concerns/ │ │ │ ├── BuildsQueries.php │ │ │ ├── BuildsWhereDateClauses.php │ │ │ ├── CompilesJsonPaths.php │ │ │ ├── ExplainsQueries.php │ │ │ ├── ManagesTransactions.php │ │ │ └── ParsesSearchPath.php │ │ ├── ConcurrencyErrorDetector.php │ │ ├── ConfigurationUrlParser.php │ │ ├── Connection.php │ │ ├── ConnectionInterface.php │ │ ├── ConnectionResolver.php │ │ ├── ConnectionResolverInterface.php │ │ ├── Connectors/ │ │ │ ├── ConnectionFactory.php │ │ │ ├── Connector.php │ │ │ ├── ConnectorInterface.php │ │ │ ├── MariaDbConnector.php │ │ │ ├── MySqlConnector.php │ │ │ ├── PostgresConnector.php │ │ │ ├── SQLiteConnector.php │ │ │ └── SqlServerConnector.php │ │ ├── Console/ │ │ │ ├── DatabaseInspectionCommand.php │ │ │ ├── DbCommand.php │ │ │ ├── DumpCommand.php │ │ │ ├── Factories/ │ │ │ │ ├── FactoryMakeCommand.php │ │ │ │ └── stubs/ │ │ │ │ └── factory.stub │ │ │ ├── Migrations/ │ │ │ │ ├── BaseCommand.php │ │ │ │ ├── FreshCommand.php │ │ │ │ ├── InstallCommand.php │ │ │ │ ├── MigrateCommand.php │ │ │ │ ├── MigrateMakeCommand.php │ │ │ │ ├── RefreshCommand.php │ │ │ │ ├── ResetCommand.php │ │ │ │ ├── RollbackCommand.php │ │ │ │ ├── StatusCommand.php │ │ │ │ └── TableGuesser.php │ │ │ ├── MonitorCommand.php │ │ │ ├── PruneCommand.php │ │ │ ├── Seeds/ │ │ │ │ ├── SeedCommand.php │ │ │ │ ├── SeederMakeCommand.php │ │ │ │ ├── WithoutModelEvents.php │ │ │ │ └── stubs/ │ │ │ │ └── seeder.stub │ │ │ ├── ShowCommand.php │ │ │ ├── ShowModelCommand.php │ │ │ ├── TableCommand.php │ │ │ └── WipeCommand.php │ │ ├── DatabaseManager.php │ │ ├── DatabaseServiceProvider.php │ │ ├── DatabaseTransactionRecord.php │ │ ├── DatabaseTransactionsManager.php │ │ ├── DeadlockException.php │ │ ├── DetectsConcurrencyErrors.php │ │ ├── DetectsLostConnections.php │ │ ├── Eloquent/ │ │ │ ├── Attributes/ │ │ │ │ ├── Appends.php │ │ │ │ ├── Boot.php │ │ │ │ ├── CollectedBy.php │ │ │ │ ├── Connection.php │ │ │ │ ├── Fillable.php │ │ │ │ ├── Guarded.php │ │ │ │ ├── Hidden.php │ │ │ │ ├── Initialize.php │ │ │ │ ├── ObservedBy.php │ │ │ │ ├── Scope.php │ │ │ │ ├── ScopedBy.php │ │ │ │ ├── Table.php │ │ │ │ ├── Touches.php │ │ │ │ ├── Unguarded.php │ │ │ │ ├── UseEloquentBuilder.php │ │ │ │ ├── UseFactory.php │ │ │ │ ├── UsePolicy.php │ │ │ │ ├── UseResource.php │ │ │ │ ├── UseResourceCollection.php │ │ │ │ └── Visible.php │ │ │ ├── BroadcastableModelEventOccurred.php │ │ │ ├── BroadcastsEvents.php │ │ │ ├── BroadcastsEventsAfterCommit.php │ │ │ ├── Builder.php │ │ │ ├── Casts/ │ │ │ │ ├── ArrayObject.php │ │ │ │ ├── AsArrayObject.php │ │ │ │ ├── AsBinary.php │ │ │ │ ├── AsCollection.php │ │ │ │ ├── AsEncryptedArrayObject.php │ │ │ │ ├── AsEncryptedCollection.php │ │ │ │ ├── AsEnumArrayObject.php │ │ │ │ ├── AsEnumCollection.php │ │ │ │ ├── AsFluent.php │ │ │ │ ├── AsHtmlString.php │ │ │ │ ├── AsStringable.php │ │ │ │ ├── AsUri.php │ │ │ │ ├── Attribute.php │ │ │ │ └── Json.php │ │ │ ├── Collection.php │ │ │ ├── Concerns/ │ │ │ │ ├── GuardsAttributes.php │ │ │ │ ├── HasAttributes.php │ │ │ │ ├── HasEvents.php │ │ │ │ ├── HasGlobalScopes.php │ │ │ │ ├── HasRelationships.php │ │ │ │ ├── HasTimestamps.php │ │ │ │ ├── HasUlids.php │ │ │ │ ├── HasUniqueIds.php │ │ │ │ ├── HasUniqueStringIds.php │ │ │ │ ├── HasUuids.php │ │ │ │ ├── HasVersion4Uuids.php │ │ │ │ ├── HidesAttributes.php │ │ │ │ ├── PreventsCircularRecursion.php │ │ │ │ ├── QueriesRelationships.php │ │ │ │ └── TransformsToResource.php │ │ │ ├── Factories/ │ │ │ │ ├── Attributes/ │ │ │ │ │ └── UseModel.php │ │ │ │ ├── BelongsToManyRelationship.php │ │ │ │ ├── BelongsToRelationship.php │ │ │ │ ├── CrossJoinSequence.php │ │ │ │ ├── Factory.php │ │ │ │ ├── HasFactory.php │ │ │ │ ├── Relationship.php │ │ │ │ └── Sequence.php │ │ │ ├── HasBuilder.php │ │ │ ├── HasCollection.php │ │ │ ├── HigherOrderBuilderProxy.php │ │ │ ├── InvalidCastException.php │ │ │ ├── JsonEncodingException.php │ │ │ ├── MassAssignmentException.php │ │ │ ├── MassPrunable.php │ │ │ ├── MissingAttributeException.php │ │ │ ├── Model.php │ │ │ ├── ModelInfo.php │ │ │ ├── ModelInspector.php │ │ │ ├── ModelNotFoundException.php │ │ │ ├── PendingHasThroughRelationship.php │ │ │ ├── Prunable.php │ │ │ ├── QueueEntityResolver.php │ │ │ ├── RelationNotFoundException.php │ │ │ ├── Relations/ │ │ │ │ ├── BelongsTo.php │ │ │ │ ├── BelongsToMany.php │ │ │ │ ├── Concerns/ │ │ │ │ │ ├── AsPivot.php │ │ │ │ │ ├── CanBeOneOfMany.php │ │ │ │ │ ├── ComparesRelatedModels.php │ │ │ │ │ ├── InteractsWithDictionary.php │ │ │ │ │ ├── InteractsWithPivotTable.php │ │ │ │ │ ├── SupportsDefaultModels.php │ │ │ │ │ └── SupportsInverseRelations.php │ │ │ │ ├── HasMany.php │ │ │ │ ├── HasManyThrough.php │ │ │ │ ├── HasOne.php │ │ │ │ ├── HasOneOrMany.php │ │ │ │ ├── HasOneOrManyThrough.php │ │ │ │ ├── HasOneThrough.php │ │ │ │ ├── MorphMany.php │ │ │ │ ├── MorphOne.php │ │ │ │ ├── MorphOneOrMany.php │ │ │ │ ├── MorphPivot.php │ │ │ │ ├── MorphTo.php │ │ │ │ ├── MorphToMany.php │ │ │ │ ├── Pivot.php │ │ │ │ └── Relation.php │ │ │ ├── Scope.php │ │ │ ├── SoftDeletes.php │ │ │ └── SoftDeletingScope.php │ │ ├── Events/ │ │ │ ├── ConnectionEstablished.php │ │ │ ├── ConnectionEvent.php │ │ │ ├── DatabaseBusy.php │ │ │ ├── DatabaseRefreshed.php │ │ │ ├── MigrationEnded.php │ │ │ ├── MigrationEvent.php │ │ │ ├── MigrationSkipped.php │ │ │ ├── MigrationStarted.php │ │ │ ├── MigrationsEnded.php │ │ │ ├── MigrationsEvent.php │ │ │ ├── MigrationsPruned.php │ │ │ ├── MigrationsStarted.php │ │ │ ├── ModelPruningFinished.php │ │ │ ├── ModelPruningStarting.php │ │ │ ├── ModelsPruned.php │ │ │ ├── NoPendingMigrations.php │ │ │ ├── QueryExecuted.php │ │ │ ├── SchemaDumped.php │ │ │ ├── SchemaLoaded.php │ │ │ ├── StatementPrepared.php │ │ │ ├── TransactionBeginning.php │ │ │ ├── TransactionCommitted.php │ │ │ ├── TransactionCommitting.php │ │ │ └── TransactionRolledBack.php │ │ ├── Grammar.php │ │ ├── LICENSE.md │ │ ├── LazyLoadingViolationException.php │ │ ├── LostConnectionDetector.php │ │ ├── LostConnectionException.php │ │ ├── MariaDbConnection.php │ │ ├── MigrationServiceProvider.php │ │ ├── Migrations/ │ │ │ ├── DatabaseMigrationRepository.php │ │ │ ├── Migration.php │ │ │ ├── MigrationCreator.php │ │ │ ├── MigrationRepositoryInterface.php │ │ │ ├── MigrationResult.php │ │ │ ├── Migrator.php │ │ │ └── stubs/ │ │ │ ├── migration.create.stub │ │ │ ├── migration.stub │ │ │ └── migration.update.stub │ │ ├── MultipleColumnsSelectedException.php │ │ ├── MultipleRecordsFoundException.php │ │ ├── MySqlConnection.php │ │ ├── PostgresConnection.php │ │ ├── Query/ │ │ │ ├── Builder.php │ │ │ ├── Expression.php │ │ │ ├── Grammars/ │ │ │ │ ├── Grammar.php │ │ │ │ ├── MariaDbGrammar.php │ │ │ │ ├── MySqlGrammar.php │ │ │ │ ├── PostgresGrammar.php │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ └── SqlServerGrammar.php │ │ │ ├── IndexHint.php │ │ │ ├── JoinClause.php │ │ │ ├── JoinLateralClause.php │ │ │ └── Processors/ │ │ │ ├── MariaDbProcessor.php │ │ │ ├── MySqlProcessor.php │ │ │ ├── PostgresProcessor.php │ │ │ ├── Processor.php │ │ │ ├── SQLiteProcessor.php │ │ │ └── SqlServerProcessor.php │ │ ├── QueryException.php │ │ ├── README.md │ │ ├── RecordNotFoundException.php │ │ ├── RecordsNotFoundException.php │ │ ├── SQLiteConnection.php │ │ ├── SQLiteDatabaseDoesNotExistException.php │ │ ├── Schema/ │ │ │ ├── Blueprint.php │ │ │ ├── BlueprintState.php │ │ │ ├── Builder.php │ │ │ ├── ColumnDefinition.php │ │ │ ├── ForeignIdColumnDefinition.php │ │ │ ├── ForeignKeyDefinition.php │ │ │ ├── Grammars/ │ │ │ │ ├── Grammar.php │ │ │ │ ├── MariaDbGrammar.php │ │ │ │ ├── MySqlGrammar.php │ │ │ │ ├── PostgresGrammar.php │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ └── SqlServerGrammar.php │ │ │ ├── IndexDefinition.php │ │ │ ├── MariaDbBuilder.php │ │ │ ├── MariaDbSchemaState.php │ │ │ ├── MySqlBuilder.php │ │ │ ├── MySqlSchemaState.php │ │ │ ├── PostgresBuilder.php │ │ │ ├── PostgresSchemaState.php │ │ │ ├── SQLiteBuilder.php │ │ │ ├── SchemaState.php │ │ │ ├── SqlServerBuilder.php │ │ │ └── SqliteSchemaState.php │ │ ├── Seeder.php │ │ ├── SqlServerConnection.php │ │ ├── UniqueConstraintViolationException.php │ │ └── composer.json │ ├── Encryption/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Encrypter.php │ │ ├── EncryptionServiceProvider.php │ │ ├── LICENSE.md │ │ ├── MissingAppKeyException.php │ │ └── composer.json │ ├── Events/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── CallQueuedListener.php │ │ ├── Dispatcher.php │ │ ├── EventServiceProvider.php │ │ ├── InvokeQueuedClosure.php │ │ ├── LICENSE.md │ │ ├── NullDispatcher.php │ │ ├── QueuedClosure.php │ │ ├── composer.json │ │ └── functions.php │ ├── Filesystem/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── AwsS3V3Adapter.php │ │ ├── Filesystem.php │ │ ├── FilesystemAdapter.php │ │ ├── FilesystemManager.php │ │ ├── FilesystemServiceProvider.php │ │ ├── LICENSE.md │ │ ├── LocalFilesystemAdapter.php │ │ ├── LockableFile.php │ │ ├── ReceiveFile.php │ │ ├── ServeFile.php │ │ ├── composer.json │ │ └── functions.php │ ├── Foundation/ │ │ ├── AliasLoader.php │ │ ├── Application.php │ │ ├── Auth/ │ │ │ ├── Access/ │ │ │ │ ├── Authorizable.php │ │ │ │ └── AuthorizesRequests.php │ │ │ ├── EmailVerificationRequest.php │ │ │ └── User.php │ │ ├── Bootstrap/ │ │ │ ├── BootProviders.php │ │ │ ├── HandleExceptions.php │ │ │ ├── LoadConfiguration.php │ │ │ ├── LoadEnvironmentVariables.php │ │ │ ├── RegisterFacades.php │ │ │ ├── RegisterProviders.php │ │ │ └── SetRequestForConsole.php │ │ ├── Bus/ │ │ │ ├── Dispatchable.php │ │ │ ├── DispatchesJobs.php │ │ │ ├── PendingChain.php │ │ │ ├── PendingClosureDispatch.php │ │ │ └── PendingDispatch.php │ │ ├── CacheBasedMaintenanceMode.php │ │ ├── Cloud.php │ │ ├── ComposerScripts.php │ │ ├── Concerns/ │ │ │ └── ResolvesDumpSource.php │ │ ├── Configuration/ │ │ │ ├── ApplicationBuilder.php │ │ │ ├── Exceptions.php │ │ │ └── Middleware.php │ │ ├── Console/ │ │ │ ├── AboutCommand.php │ │ │ ├── ApiInstallCommand.php │ │ │ ├── BroadcastingInstallCommand.php │ │ │ ├── CastMakeCommand.php │ │ │ ├── ChannelListCommand.php │ │ │ ├── ChannelMakeCommand.php │ │ │ ├── ClassMakeCommand.php │ │ │ ├── ClearCompiledCommand.php │ │ │ ├── CliDumper.php │ │ │ ├── ClosureCommand.php │ │ │ ├── ComponentMakeCommand.php │ │ │ ├── ConfigCacheCommand.php │ │ │ ├── ConfigClearCommand.php │ │ │ ├── ConfigMakeCommand.php │ │ │ ├── ConfigPublishCommand.php │ │ │ ├── ConfigShowCommand.php │ │ │ ├── ConsoleMakeCommand.php │ │ │ ├── DocsCommand.php │ │ │ ├── DownCommand.php │ │ │ ├── EnumMakeCommand.php │ │ │ ├── EnvironmentCommand.php │ │ │ ├── EnvironmentDecryptCommand.php │ │ │ ├── EnvironmentEncryptCommand.php │ │ │ ├── EventCacheCommand.php │ │ │ ├── EventClearCommand.php │ │ │ ├── EventGenerateCommand.php │ │ │ ├── EventListCommand.php │ │ │ ├── EventMakeCommand.php │ │ │ ├── ExceptionMakeCommand.php │ │ │ ├── InteractsWithComposerPackages.php │ │ │ ├── InterfaceMakeCommand.php │ │ │ ├── JobMakeCommand.php │ │ │ ├── JobMiddlewareMakeCommand.php │ │ │ ├── Kernel.php │ │ │ ├── KeyGenerateCommand.php │ │ │ ├── LangPublishCommand.php │ │ │ ├── ListenerMakeCommand.php │ │ │ ├── MailMakeCommand.php │ │ │ ├── ModelMakeCommand.php │ │ │ ├── NotificationMakeCommand.php │ │ │ ├── ObserverMakeCommand.php │ │ │ ├── OptimizeClearCommand.php │ │ │ ├── OptimizeCommand.php │ │ │ ├── PackageDiscoverCommand.php │ │ │ ├── PolicyMakeCommand.php │ │ │ ├── ProviderMakeCommand.php │ │ │ ├── QueuedCommand.php │ │ │ ├── ReloadCommand.php │ │ │ ├── RequestMakeCommand.php │ │ │ ├── ResourceMakeCommand.php │ │ │ ├── RouteCacheCommand.php │ │ │ ├── RouteClearCommand.php │ │ │ ├── RouteListCommand.php │ │ │ ├── RuleMakeCommand.php │ │ │ ├── ScopeMakeCommand.php │ │ │ ├── ServeCommand.php │ │ │ ├── StorageLinkCommand.php │ │ │ ├── StorageUnlinkCommand.php │ │ │ ├── StubPublishCommand.php │ │ │ ├── TestMakeCommand.php │ │ │ ├── TraitMakeCommand.php │ │ │ ├── UpCommand.php │ │ │ ├── VendorPublishCommand.php │ │ │ ├── ViewCacheCommand.php │ │ │ ├── ViewClearCommand.php │ │ │ ├── ViewMakeCommand.php │ │ │ └── stubs/ │ │ │ ├── api-routes.stub │ │ │ ├── broadcasting-routes.stub │ │ │ ├── cast.inbound.stub │ │ │ ├── cast.stub │ │ │ ├── channel.stub │ │ │ ├── class.invokable.stub │ │ │ ├── class.stub │ │ │ ├── config.stub │ │ │ ├── console.stub │ │ │ ├── echo-bootstrap-js.stub │ │ │ ├── echo-js-ably.stub │ │ │ ├── echo-js-pusher.stub │ │ │ ├── echo-js-reverb.stub │ │ │ ├── enum.backed.stub │ │ │ ├── enum.stub │ │ │ ├── event.stub │ │ │ ├── exception-render-report.stub │ │ │ ├── exception-render.stub │ │ │ ├── exception-report.stub │ │ │ ├── exception.stub │ │ │ ├── interface.stub │ │ │ ├── job.batched.queued.stub │ │ │ ├── job.middleware.stub │ │ │ ├── job.queued.stub │ │ │ ├── job.stub │ │ │ ├── listener.queued.stub │ │ │ ├── listener.stub │ │ │ ├── listener.typed.queued.stub │ │ │ ├── listener.typed.stub │ │ │ ├── mail.stub │ │ │ ├── maintenance-mode.stub │ │ │ ├── markdown-mail.stub │ │ │ ├── markdown-notification.stub │ │ │ ├── markdown.stub │ │ │ ├── model.morph-pivot.stub │ │ │ ├── model.pivot.stub │ │ │ ├── model.stub │ │ │ ├── notification.stub │ │ │ ├── observer.plain.stub │ │ │ ├── observer.stub │ │ │ ├── pest.stub │ │ │ ├── pest.unit.stub │ │ │ ├── policy.plain.stub │ │ │ ├── policy.stub │ │ │ ├── provider.stub │ │ │ ├── request.stub │ │ │ ├── resource-collection.stub │ │ │ ├── resource-json-api.stub │ │ │ ├── resource.stub │ │ │ ├── routes.stub │ │ │ ├── rule.implicit.stub │ │ │ ├── rule.stub │ │ │ ├── scope.stub │ │ │ ├── test.stub │ │ │ ├── test.unit.stub │ │ │ ├── trait.stub │ │ │ ├── view-component.stub │ │ │ ├── view-mail.stub │ │ │ ├── view.pest.stub │ │ │ ├── view.stub │ │ │ └── view.test.stub │ │ ├── EnvironmentDetector.php │ │ ├── Events/ │ │ │ ├── DiagnosingHealth.php │ │ │ ├── DiscoverEvents.php │ │ │ ├── Dispatchable.php │ │ │ ├── LocaleUpdated.php │ │ │ ├── MaintenanceModeDisabled.php │ │ │ ├── MaintenanceModeEnabled.php │ │ │ ├── PublishingStubs.php │ │ │ ├── Terminating.php │ │ │ └── VendorTagPublished.php │ │ ├── Exceptions/ │ │ │ ├── Handler.php │ │ │ ├── RegisterErrorViewPaths.php │ │ │ ├── Renderer/ │ │ │ │ ├── Exception.php │ │ │ │ ├── Frame.php │ │ │ │ ├── Listener.php │ │ │ │ ├── Mappers/ │ │ │ │ │ └── BladeMapper.php │ │ │ │ └── Renderer.php │ │ │ ├── ReportableHandler.php │ │ │ ├── Whoops/ │ │ │ │ ├── WhoopsExceptionRenderer.php │ │ │ │ └── WhoopsHandler.php │ │ │ └── views/ │ │ │ ├── 401.blade.php │ │ │ ├── 402.blade.php │ │ │ ├── 403.blade.php │ │ │ ├── 404.blade.php │ │ │ ├── 419.blade.php │ │ │ ├── 429.blade.php │ │ │ ├── 500.blade.php │ │ │ ├── 503.blade.php │ │ │ ├── layout.blade.php │ │ │ └── minimal.blade.php │ │ ├── FileBasedMaintenanceMode.php │ │ ├── Http/ │ │ │ ├── Attributes/ │ │ │ │ ├── ErrorBag.php │ │ │ │ ├── RedirectTo.php │ │ │ │ ├── RedirectToRoute.php │ │ │ │ └── StopOnFirstFailure.php │ │ │ ├── Events/ │ │ │ │ └── RequestHandled.php │ │ │ ├── FormRequest.php │ │ │ ├── HtmlDumper.php │ │ │ ├── Kernel.php │ │ │ ├── MaintenanceModeBypassCookie.php │ │ │ └── Middleware/ │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── Concerns/ │ │ │ │ └── ExcludesPaths.php │ │ │ ├── ConvertEmptyStringsToNull.php │ │ │ ├── HandlePrecognitiveRequests.php │ │ │ ├── InvokeDeferredCallbacks.php │ │ │ ├── PreventRequestForgery.php │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ ├── TransformsRequest.php │ │ │ ├── TrimStrings.php │ │ │ ├── ValidateCsrfToken.php │ │ │ ├── ValidatePostSize.php │ │ │ └── VerifyCsrfToken.php │ │ ├── Inspiring.php │ │ ├── MaintenanceModeManager.php │ │ ├── Mix.php │ │ ├── MixFileNotFoundException.php │ │ ├── MixManifestNotFoundException.php │ │ ├── PackageManifest.php │ │ ├── Precognition.php │ │ ├── ProviderRepository.php │ │ ├── Providers/ │ │ │ ├── ArtisanServiceProvider.php │ │ │ ├── ComposerServiceProvider.php │ │ │ ├── ConsoleSupportServiceProvider.php │ │ │ ├── FormRequestServiceProvider.php │ │ │ └── FoundationServiceProvider.php │ │ ├── Queue/ │ │ │ ├── InteractsWithUniqueJobs.php │ │ │ └── Queueable.php │ │ ├── Routing/ │ │ │ ├── PrecognitionCallableDispatcher.php │ │ │ └── PrecognitionControllerDispatcher.php │ │ ├── Support/ │ │ │ └── Providers/ │ │ │ ├── AuthServiceProvider.php │ │ │ ├── EventServiceProvider.php │ │ │ └── RouteServiceProvider.php │ │ ├── Testing/ │ │ │ ├── Attributes/ │ │ │ │ ├── Seed.php │ │ │ │ ├── Seeder.php │ │ │ │ ├── SetUp.php │ │ │ │ └── TearDown.php │ │ │ ├── CachedState.php │ │ │ ├── Concerns/ │ │ │ │ ├── InteractsWithAuthentication.php │ │ │ │ ├── InteractsWithConsole.php │ │ │ │ ├── InteractsWithContainer.php │ │ │ │ ├── InteractsWithDatabase.php │ │ │ │ ├── InteractsWithDeprecationHandling.php │ │ │ │ ├── InteractsWithExceptionHandling.php │ │ │ │ ├── InteractsWithRedis.php │ │ │ │ ├── InteractsWithSession.php │ │ │ │ ├── InteractsWithTestCaseLifecycle.php │ │ │ │ ├── InteractsWithTime.php │ │ │ │ ├── InteractsWithViews.php │ │ │ │ ├── MakesHttpRequests.php │ │ │ │ └── WithoutExceptionHandlingHandler.php │ │ │ ├── DatabaseMigrations.php │ │ │ ├── DatabaseTransactions.php │ │ │ ├── DatabaseTransactionsManager.php │ │ │ ├── DatabaseTruncation.php │ │ │ ├── LazilyRefreshDatabase.php │ │ │ ├── RefreshDatabase.php │ │ │ ├── RefreshDatabaseState.php │ │ │ ├── TestCase.php │ │ │ ├── Traits/ │ │ │ │ └── CanConfigureMigrationCommands.php │ │ │ ├── WithCachedConfig.php │ │ │ ├── WithCachedRoutes.php │ │ │ ├── WithConsoleEvents.php │ │ │ ├── WithFaker.php │ │ │ ├── WithoutMiddleware.php │ │ │ └── Wormhole.php │ │ ├── Validation/ │ │ │ └── ValidatesRequests.php │ │ ├── Vite.php │ │ ├── ViteException.php │ │ ├── ViteManifestNotFoundException.php │ │ ├── helpers.php │ │ ├── resources/ │ │ │ ├── exceptions/ │ │ │ │ └── renderer/ │ │ │ │ ├── .gitignore │ │ │ │ ├── components/ │ │ │ │ │ ├── badge.blade.php │ │ │ │ │ ├── empty-state.blade.php │ │ │ │ │ ├── file-with-line.blade.php │ │ │ │ │ ├── formatted-source.blade.php │ │ │ │ │ ├── frame-code.blade.php │ │ │ │ │ ├── frame.blade.php │ │ │ │ │ ├── header.blade.php │ │ │ │ │ ├── http-method.blade.php │ │ │ │ │ ├── icons/ │ │ │ │ │ │ ├── alert.blade.php │ │ │ │ │ │ ├── check.blade.php │ │ │ │ │ │ ├── chevron-left.blade.php │ │ │ │ │ │ ├── chevron-right.blade.php │ │ │ │ │ │ ├── chevrons-down-up.blade.php │ │ │ │ │ │ ├── chevrons-left.blade.php │ │ │ │ │ │ ├── chevrons-right.blade.php │ │ │ │ │ │ ├── chevrons-up-down.blade.php │ │ │ │ │ │ ├── copy.blade.php │ │ │ │ │ │ ├── database.blade.php │ │ │ │ │ │ ├── folder-open.blade.php │ │ │ │ │ │ ├── folder.blade.php │ │ │ │ │ │ ├── globe.blade.php │ │ │ │ │ │ ├── info.blade.php │ │ │ │ │ │ └── laravel-ascii.blade.php │ │ │ │ │ ├── laravel-ascii-spotlight.blade.php │ │ │ │ │ ├── layout.blade.php │ │ │ │ │ ├── previous-exceptions.blade.php │ │ │ │ │ ├── query.blade.php │ │ │ │ │ ├── request-body.blade.php │ │ │ │ │ ├── request-header.blade.php │ │ │ │ │ ├── request-url.blade.php │ │ │ │ │ ├── routing-parameter.blade.php │ │ │ │ │ ├── routing.blade.php │ │ │ │ │ ├── section-container.blade.php │ │ │ │ │ ├── separator.blade.php │ │ │ │ │ ├── syntax-highlight.blade.php │ │ │ │ │ ├── topbar.blade.php │ │ │ │ │ ├── trace.blade.php │ │ │ │ │ ├── vendor-frame.blade.php │ │ │ │ │ └── vendor-frames.blade.php │ │ │ │ ├── dist/ │ │ │ │ │ ├── scripts.js │ │ │ │ │ └── styles.css │ │ │ │ ├── markdown.blade.php │ │ │ │ ├── package.json │ │ │ │ ├── scripts.js │ │ │ │ ├── show.blade.php │ │ │ │ ├── styles.css │ │ │ │ └── vite.config.js │ │ │ ├── health-up.blade.php │ │ │ └── server.php │ │ └── stubs/ │ │ └── facade.stub │ ├── Hashing/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── AbstractHasher.php │ │ ├── Argon2IdHasher.php │ │ ├── ArgonHasher.php │ │ ├── BcryptHasher.php │ │ ├── HashManager.php │ │ ├── HashServiceProvider.php │ │ ├── LICENSE.md │ │ └── composer.json │ ├── Http/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Client/ │ │ │ ├── Batch.php │ │ │ ├── BatchInProgressException.php │ │ │ ├── Concerns/ │ │ │ │ └── DeterminesStatusCode.php │ │ │ ├── ConnectionException.php │ │ │ ├── Events/ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ ├── RequestSending.php │ │ │ │ └── ResponseReceived.php │ │ │ ├── Factory.php │ │ │ ├── HttpClientException.php │ │ │ ├── PendingRequest.php │ │ │ ├── Pool.php │ │ │ ├── Promises/ │ │ │ │ ├── FluentPromise.php │ │ │ │ └── LazyPromise.php │ │ │ ├── Request.php │ │ │ ├── RequestException.php │ │ │ ├── Response.php │ │ │ ├── ResponseSequence.php │ │ │ └── StrayRequestException.php │ │ ├── Concerns/ │ │ │ ├── CanBePrecognitive.php │ │ │ ├── InteractsWithContentTypes.php │ │ │ ├── InteractsWithFlashData.php │ │ │ └── InteractsWithInput.php │ │ ├── Exceptions/ │ │ │ ├── HttpResponseException.php │ │ │ ├── MalformedUrlException.php │ │ │ ├── OriginMismatchException.php │ │ │ ├── PostTooLargeException.php │ │ │ └── ThrottleRequestsException.php │ │ ├── File.php │ │ ├── FileHelpers.php │ │ ├── JsonResponse.php │ │ ├── LICENSE.md │ │ ├── Middleware/ │ │ │ ├── AddLinkHeadersForPreloadedAssets.php │ │ │ ├── CheckResponseForModifications.php │ │ │ ├── FrameGuard.php │ │ │ ├── HandleCors.php │ │ │ ├── SetCacheHeaders.php │ │ │ ├── TrustHosts.php │ │ │ ├── TrustProxies.php │ │ │ ├── ValidatePathEncoding.php │ │ │ └── ValidatePostSize.php │ │ ├── RedirectResponse.php │ │ ├── Request.php │ │ ├── Resources/ │ │ │ ├── Attributes/ │ │ │ │ ├── Collects.php │ │ │ │ └── PreserveKeys.php │ │ │ ├── CollectsResources.php │ │ │ ├── ConditionallyLoadsAttributes.php │ │ │ ├── DelegatesToResource.php │ │ │ ├── Json/ │ │ │ │ ├── AnonymousResourceCollection.php │ │ │ │ ├── JsonResource.php │ │ │ │ ├── PaginatedResourceResponse.php │ │ │ │ ├── ResourceCollection.php │ │ │ │ └── ResourceResponse.php │ │ │ ├── JsonApi/ │ │ │ │ ├── AnonymousResourceCollection.php │ │ │ │ ├── Concerns/ │ │ │ │ │ ├── ResolvesJsonApiElements.php │ │ │ │ │ └── ResolvesJsonApiRequest.php │ │ │ │ ├── Exceptions/ │ │ │ │ │ └── ResourceIdentificationException.php │ │ │ │ ├── JsonApiRequest.php │ │ │ │ ├── JsonApiResource.php │ │ │ │ └── RelationResolver.php │ │ │ ├── MergeValue.php │ │ │ ├── MissingValue.php │ │ │ └── PotentiallyMissing.php │ │ ├── Response.php │ │ ├── ResponseTrait.php │ │ ├── StreamedEvent.php │ │ ├── Testing/ │ │ │ ├── File.php │ │ │ ├── FileFactory.php │ │ │ └── MimeType.php │ │ ├── UploadedFile.php │ │ └── composer.json │ ├── JsonSchema/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── JsonSchema.php │ │ ├── JsonSchemaTypeFactory.php │ │ ├── LICENSE.md │ │ ├── Serializer.php │ │ ├── Types/ │ │ │ ├── ArrayType.php │ │ │ ├── BooleanType.php │ │ │ ├── IntegerType.php │ │ │ ├── NumberType.php │ │ │ ├── ObjectType.php │ │ │ ├── StringType.php │ │ │ └── Type.php │ │ └── composer.json │ ├── Log/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Context/ │ │ │ ├── ContextLogProcessor.php │ │ │ ├── ContextServiceProvider.php │ │ │ ├── Events/ │ │ │ │ ├── ContextDehydrating.php │ │ │ │ └── ContextHydrated.php │ │ │ └── Repository.php │ │ ├── Events/ │ │ │ └── MessageLogged.php │ │ ├── LICENSE.md │ │ ├── LogManager.php │ │ ├── LogServiceProvider.php │ │ ├── Logger.php │ │ ├── ParsesLogConfiguration.php │ │ ├── composer.json │ │ └── functions.php │ ├── Macroable/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── LICENSE.md │ │ ├── Traits/ │ │ │ └── Macroable.php │ │ └── composer.json │ ├── Mail/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Attachment.php │ │ ├── Events/ │ │ │ ├── MessageSending.php │ │ │ └── MessageSent.php │ │ ├── LICENSE.md │ │ ├── MailManager.php │ │ ├── MailServiceProvider.php │ │ ├── Mailable.php │ │ ├── Mailables/ │ │ │ ├── Address.php │ │ │ ├── Attachment.php │ │ │ ├── Content.php │ │ │ ├── Envelope.php │ │ │ └── Headers.php │ │ ├── Mailer.php │ │ ├── Markdown.php │ │ ├── Message.php │ │ ├── PendingMail.php │ │ ├── SendQueuedMailable.php │ │ ├── SentMessage.php │ │ ├── TextMessage.php │ │ ├── Transport/ │ │ │ ├── ArrayTransport.php │ │ │ ├── LogTransport.php │ │ │ ├── ResendTransport.php │ │ │ ├── SesTransport.php │ │ │ └── SesV2Transport.php │ │ ├── composer.json │ │ └── resources/ │ │ └── views/ │ │ ├── html/ │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── subcopy.blade.php │ │ │ ├── table.blade.php │ │ │ └── themes/ │ │ │ └── default.css │ │ └── text/ │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── subcopy.blade.php │ │ └── table.blade.php │ ├── Notifications/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Action.php │ │ ├── AnonymousNotifiable.php │ │ ├── ChannelManager.php │ │ ├── Channels/ │ │ │ ├── BroadcastChannel.php │ │ │ ├── DatabaseChannel.php │ │ │ └── MailChannel.php │ │ ├── Console/ │ │ │ ├── NotificationTableCommand.php │ │ │ └── stubs/ │ │ │ └── notifications.stub │ │ ├── DatabaseNotification.php │ │ ├── DatabaseNotificationCollection.php │ │ ├── Events/ │ │ │ ├── BroadcastNotificationCreated.php │ │ │ ├── NotificationFailed.php │ │ │ ├── NotificationSending.php │ │ │ └── NotificationSent.php │ │ ├── HasDatabaseNotifications.php │ │ ├── LICENSE.md │ │ ├── Messages/ │ │ │ ├── BroadcastMessage.php │ │ │ ├── DatabaseMessage.php │ │ │ ├── MailMessage.php │ │ │ └── SimpleMessage.php │ │ ├── Notifiable.php │ │ ├── Notification.php │ │ ├── NotificationSender.php │ │ ├── NotificationServiceProvider.php │ │ ├── RoutesNotifications.php │ │ ├── SendQueuedNotifications.php │ │ ├── composer.json │ │ └── resources/ │ │ └── views/ │ │ └── email.blade.php │ ├── Pagination/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── AbstractCursorPaginator.php │ │ ├── AbstractPaginator.php │ │ ├── Cursor.php │ │ ├── CursorPaginator.php │ │ ├── LICENSE.md │ │ ├── LengthAwarePaginator.php │ │ ├── PaginationServiceProvider.php │ │ ├── PaginationState.php │ │ ├── Paginator.php │ │ ├── UrlWindow.php │ │ ├── composer.json │ │ └── resources/ │ │ └── views/ │ │ ├── bootstrap-3.blade.php │ │ ├── bootstrap-4.blade.php │ │ ├── bootstrap-5.blade.php │ │ ├── semantic-ui.blade.php │ │ ├── simple-bootstrap-3.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ ├── simple-bootstrap-5.blade.php │ │ ├── simple-tailwind.blade.php │ │ └── tailwind.blade.php │ ├── Pipeline/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Hub.php │ │ ├── LICENSE.md │ │ ├── Pipeline.php │ │ ├── PipelineServiceProvider.php │ │ └── composer.json │ ├── Process/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Exceptions/ │ │ │ ├── ProcessFailedException.php │ │ │ └── ProcessTimedOutException.php │ │ ├── Factory.php │ │ ├── FakeInvokedProcess.php │ │ ├── FakeProcessDescription.php │ │ ├── FakeProcessResult.php │ │ ├── FakeProcessSequence.php │ │ ├── InvokedProcess.php │ │ ├── InvokedProcessPool.php │ │ ├── LICENSE.md │ │ ├── PendingProcess.php │ │ ├── Pipe.php │ │ ├── Pool.php │ │ ├── ProcessPoolResults.php │ │ ├── ProcessResult.php │ │ └── composer.json │ ├── Queue/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Attributes/ │ │ │ ├── Backoff.php │ │ │ ├── Connection.php │ │ │ ├── DeleteWhenMissingModels.php │ │ │ ├── FailOnTimeout.php │ │ │ ├── MaxExceptions.php │ │ │ ├── Queue.php │ │ │ ├── ReadsQueueAttributes.php │ │ │ ├── Timeout.php │ │ │ ├── Tries.php │ │ │ ├── UniqueFor.php │ │ │ └── WithoutRelations.php │ │ ├── BackgroundQueue.php │ │ ├── BeanstalkdQueue.php │ │ ├── CallQueuedClosure.php │ │ ├── CallQueuedHandler.php │ │ ├── Capsule/ │ │ │ └── Manager.php │ │ ├── Connectors/ │ │ │ ├── BackgroundConnector.php │ │ │ ├── BeanstalkdConnector.php │ │ │ ├── ConnectorInterface.php │ │ │ ├── DatabaseConnector.php │ │ │ ├── DeferredConnector.php │ │ │ ├── FailoverConnector.php │ │ │ ├── NullConnector.php │ │ │ ├── RedisConnector.php │ │ │ ├── SqsConnector.php │ │ │ └── SyncConnector.php │ │ ├── Console/ │ │ │ ├── BatchesTableCommand.php │ │ │ ├── ClearCommand.php │ │ │ ├── Concerns/ │ │ │ │ └── ParsesQueue.php │ │ │ ├── FailedTableCommand.php │ │ │ ├── FlushFailedCommand.php │ │ │ ├── ForgetFailedCommand.php │ │ │ ├── ListFailedCommand.php │ │ │ ├── ListenCommand.php │ │ │ ├── MonitorCommand.php │ │ │ ├── PauseCommand.php │ │ │ ├── PruneBatchesCommand.php │ │ │ ├── PruneFailedJobsCommand.php │ │ │ ├── RestartCommand.php │ │ │ ├── ResumeCommand.php │ │ │ ├── RetryBatchCommand.php │ │ │ ├── RetryCommand.php │ │ │ ├── TableCommand.php │ │ │ ├── WorkCommand.php │ │ │ └── stubs/ │ │ │ ├── batches.stub │ │ │ ├── failed_jobs.stub │ │ │ └── jobs.stub │ │ ├── DatabaseQueue.php │ │ ├── DeferredQueue.php │ │ ├── Events/ │ │ │ ├── JobAttempted.php │ │ │ ├── JobExceptionOccurred.php │ │ │ ├── JobFailed.php │ │ │ ├── JobPopped.php │ │ │ ├── JobPopping.php │ │ │ ├── JobProcessed.php │ │ │ ├── JobProcessing.php │ │ │ ├── JobQueued.php │ │ │ ├── JobQueueing.php │ │ │ ├── JobReleasedAfterException.php │ │ │ ├── JobRetryRequested.php │ │ │ ├── JobTimedOut.php │ │ │ ├── Looping.php │ │ │ ├── QueueBusy.php │ │ │ ├── QueueFailedOver.php │ │ │ ├── QueuePaused.php │ │ │ ├── QueueResumed.php │ │ │ ├── WorkerStarting.php │ │ │ └── WorkerStopping.php │ │ ├── Failed/ │ │ │ ├── CountableFailedJobProvider.php │ │ │ ├── DatabaseFailedJobProvider.php │ │ │ ├── DatabaseUuidFailedJobProvider.php │ │ │ ├── DynamoDbFailedJobProvider.php │ │ │ ├── FailedJobProviderInterface.php │ │ │ ├── FileFailedJobProvider.php │ │ │ ├── NullFailedJobProvider.php │ │ │ └── PrunableFailedJobProvider.php │ │ ├── FailoverQueue.php │ │ ├── InteractsWithQueue.php │ │ ├── InvalidPayloadException.php │ │ ├── Jobs/ │ │ │ ├── BeanstalkdJob.php │ │ │ ├── DatabaseJob.php │ │ │ ├── DatabaseJobRecord.php │ │ │ ├── FakeJob.php │ │ │ ├── Job.php │ │ │ ├── JobName.php │ │ │ ├── RedisJob.php │ │ │ ├── SqsJob.php │ │ │ └── SyncJob.php │ │ ├── LICENSE.md │ │ ├── Listener.php │ │ ├── ListenerOptions.php │ │ ├── LuaScripts.php │ │ ├── ManuallyFailedException.php │ │ ├── MaxAttemptsExceededException.php │ │ ├── Middleware/ │ │ │ ├── FailOnException.php │ │ │ ├── RateLimited.php │ │ │ ├── RateLimitedWithRedis.php │ │ │ ├── Skip.php │ │ │ ├── SkipIfBatchCancelled.php │ │ │ ├── ThrottlesExceptions.php │ │ │ ├── ThrottlesExceptionsWithRedis.php │ │ │ └── WithoutOverlapping.php │ │ ├── NullQueue.php │ │ ├── Queue.php │ │ ├── QueueManager.php │ │ ├── QueueRoutes.php │ │ ├── QueueServiceProvider.php │ │ ├── README.md │ │ ├── RedisQueue.php │ │ ├── SerializesAndRestoresModelIdentifiers.php │ │ ├── SerializesModels.php │ │ ├── SqsQueue.php │ │ ├── SyncQueue.php │ │ ├── TimeoutExceededException.php │ │ ├── Worker.php │ │ ├── WorkerOptions.php │ │ ├── WorkerStopReason.php │ │ └── composer.json │ ├── Redis/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Connections/ │ │ │ ├── Connection.php │ │ │ ├── PacksPhpRedisValues.php │ │ │ ├── PhpRedisClusterConnection.php │ │ │ ├── PhpRedisConnection.php │ │ │ ├── PredisClusterConnection.php │ │ │ └── PredisConnection.php │ │ ├── Connectors/ │ │ │ ├── PhpRedisConnector.php │ │ │ └── PredisConnector.php │ │ ├── Events/ │ │ │ ├── CommandExecuted.php │ │ │ └── CommandFailed.php │ │ ├── LICENSE.md │ │ ├── Limiters/ │ │ │ ├── ConcurrencyLimiter.php │ │ │ ├── ConcurrencyLimiterBuilder.php │ │ │ ├── DurationLimiter.php │ │ │ └── DurationLimiterBuilder.php │ │ ├── RedisManager.php │ │ ├── RedisServiceProvider.php │ │ └── composer.json │ ├── Reflection/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── LICENSE.md │ │ ├── Reflector.php │ │ ├── Traits/ │ │ │ └── ReflectsClosures.php │ │ ├── composer.json │ │ └── helpers.php │ ├── Routing/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── AbstractRouteCollection.php │ │ ├── Attributes/ │ │ │ └── Controllers/ │ │ │ ├── Authorize.php │ │ │ └── Middleware.php │ │ ├── CallableDispatcher.php │ │ ├── CompiledRouteCollection.php │ │ ├── Console/ │ │ │ ├── ControllerMakeCommand.php │ │ │ ├── MiddlewareMakeCommand.php │ │ │ └── stubs/ │ │ │ ├── controller.api.stub │ │ │ ├── controller.invokable.stub │ │ │ ├── controller.model.api.stub │ │ │ ├── controller.model.stub │ │ │ ├── controller.nested.api.stub │ │ │ ├── controller.nested.singleton.api.stub │ │ │ ├── controller.nested.singleton.stub │ │ │ ├── controller.nested.stub │ │ │ ├── controller.plain.stub │ │ │ ├── controller.singleton.api.stub │ │ │ ├── controller.singleton.stub │ │ │ ├── controller.stub │ │ │ └── middleware.stub │ │ ├── Contracts/ │ │ │ ├── CallableDispatcher.php │ │ │ └── ControllerDispatcher.php │ │ ├── Controller.php │ │ ├── ControllerDispatcher.php │ │ ├── ControllerMiddlewareOptions.php │ │ ├── Controllers/ │ │ │ ├── HasMiddleware.php │ │ │ └── Middleware.php │ │ ├── CreatesRegularExpressionRouteConstraints.php │ │ ├── Events/ │ │ │ ├── PreparingResponse.php │ │ │ ├── ResponsePrepared.php │ │ │ ├── RouteMatched.php │ │ │ └── Routing.php │ │ ├── Exceptions/ │ │ │ ├── BackedEnumCaseNotFoundException.php │ │ │ ├── InvalidSignatureException.php │ │ │ ├── MissingRateLimiterException.php │ │ │ ├── StreamedResponseException.php │ │ │ └── UrlGenerationException.php │ │ ├── FiltersControllerMiddleware.php │ │ ├── ImplicitRouteBinding.php │ │ ├── LICENSE.md │ │ ├── Matching/ │ │ │ ├── HostValidator.php │ │ │ ├── MethodValidator.php │ │ │ ├── SchemeValidator.php │ │ │ ├── UriValidator.php │ │ │ └── ValidatorInterface.php │ │ ├── Middleware/ │ │ │ ├── SubstituteBindings.php │ │ │ ├── ThrottleRequests.php │ │ │ ├── ThrottleRequestsWithRedis.php │ │ │ └── ValidateSignature.php │ │ ├── MiddlewareNameResolver.php │ │ ├── PendingResourceRegistration.php │ │ ├── PendingSingletonResourceRegistration.php │ │ ├── Pipeline.php │ │ ├── RedirectController.php │ │ ├── Redirector.php │ │ ├── ResolvesRouteDependencies.php │ │ ├── ResourceRegistrar.php │ │ ├── ResponseFactory.php │ │ ├── Route.php │ │ ├── RouteAction.php │ │ ├── RouteBinding.php │ │ ├── RouteCollection.php │ │ ├── RouteCollectionInterface.php │ │ ├── RouteDependencyResolverTrait.php │ │ ├── RouteFileRegistrar.php │ │ ├── RouteGroup.php │ │ ├── RouteParameterBinder.php │ │ ├── RouteRegistrar.php │ │ ├── RouteSignatureParameters.php │ │ ├── RouteUri.php │ │ ├── RouteUrlGenerator.php │ │ ├── Router.php │ │ ├── RoutingServiceProvider.php │ │ ├── SortedMiddleware.php │ │ ├── UrlGenerator.php │ │ ├── ViewController.php │ │ └── composer.json │ ├── Session/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── ArraySessionHandler.php │ │ ├── CacheBasedSessionHandler.php │ │ ├── Console/ │ │ │ ├── SessionTableCommand.php │ │ │ └── stubs/ │ │ │ └── database.stub │ │ ├── CookieSessionHandler.php │ │ ├── DatabaseSessionHandler.php │ │ ├── EncryptedStore.php │ │ ├── ExistenceAwareInterface.php │ │ ├── FileSessionHandler.php │ │ ├── LICENSE.md │ │ ├── Middleware/ │ │ │ ├── AuthenticateSession.php │ │ │ └── StartSession.php │ │ ├── NullSessionHandler.php │ │ ├── SessionManager.php │ │ ├── SessionServiceProvider.php │ │ ├── Store.php │ │ ├── SymfonySessionDecorator.php │ │ ├── TokenMismatchException.php │ │ └── composer.json │ ├── Support/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── AggregateServiceProvider.php │ │ ├── Benchmark.php │ │ ├── BinaryCodec.php │ │ ├── Carbon.php │ │ ├── Composer.php │ │ ├── ConfigurationUrlParser.php │ │ ├── DateFactory.php │ │ ├── DefaultProviders.php │ │ ├── Defer/ │ │ │ ├── DeferredCallback.php │ │ │ └── DeferredCallbackCollection.php │ │ ├── EncodedHtmlString.php │ │ ├── Env.php │ │ ├── Exceptions/ │ │ │ └── MathException.php │ │ ├── Facades/ │ │ │ ├── App.php │ │ │ ├── Artisan.php │ │ │ ├── Auth.php │ │ │ ├── Blade.php │ │ │ ├── Broadcast.php │ │ │ ├── Bus.php │ │ │ ├── Cache.php │ │ │ ├── Concurrency.php │ │ │ ├── Config.php │ │ │ ├── Context.php │ │ │ ├── Cookie.php │ │ │ ├── Crypt.php │ │ │ ├── DB.php │ │ │ ├── Date.php │ │ │ ├── Event.php │ │ │ ├── Exceptions.php │ │ │ ├── Facade.php │ │ │ ├── File.php │ │ │ ├── Gate.php │ │ │ ├── Hash.php │ │ │ ├── Http.php │ │ │ ├── Lang.php │ │ │ ├── Log.php │ │ │ ├── Mail.php │ │ │ ├── MaintenanceMode.php │ │ │ ├── Notification.php │ │ │ ├── ParallelTesting.php │ │ │ ├── Password.php │ │ │ ├── Pipeline.php │ │ │ ├── Process.php │ │ │ ├── Queue.php │ │ │ ├── RateLimiter.php │ │ │ ├── Redirect.php │ │ │ ├── Redis.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Route.php │ │ │ ├── Schedule.php │ │ │ ├── Schema.php │ │ │ ├── Session.php │ │ │ ├── Storage.php │ │ │ ├── URL.php │ │ │ ├── Validator.php │ │ │ ├── View.php │ │ │ └── Vite.php │ │ ├── Fluent.php │ │ ├── HigherOrderTapProxy.php │ │ ├── HtmlString.php │ │ ├── InteractsWithTime.php │ │ ├── Js.php │ │ ├── LICENSE.md │ │ ├── Lottery.php │ │ ├── Manager.php │ │ ├── MessageBag.php │ │ ├── MultipleInstanceManager.php │ │ ├── NamespacedItemResolver.php │ │ ├── Number.php │ │ ├── Once.php │ │ ├── Onceable.php │ │ ├── Optional.php │ │ ├── Pluralizer.php │ │ ├── ProcessUtils.php │ │ ├── Queue/ │ │ │ └── Concerns/ │ │ │ └── ResolvesQueueRoutes.php │ │ ├── ServiceProvider.php │ │ ├── Sleep.php │ │ ├── Str.php │ │ ├── Stringable.php │ │ ├── Testing/ │ │ │ └── Fakes/ │ │ │ ├── BatchFake.php │ │ │ ├── BatchRepositoryFake.php │ │ │ ├── BusFake.php │ │ │ ├── ChainedBatchTruthTest.php │ │ │ ├── EventFake.php │ │ │ ├── ExceptionHandlerFake.php │ │ │ ├── Fake.php │ │ │ ├── MailFake.php │ │ │ ├── NotificationFake.php │ │ │ ├── PendingBatchFake.php │ │ │ ├── PendingChainFake.php │ │ │ ├── PendingMailFake.php │ │ │ └── QueueFake.php │ │ ├── Timebox.php │ │ ├── Traits/ │ │ │ ├── CapsuleManagerTrait.php │ │ │ ├── Dumpable.php │ │ │ ├── ForwardsCalls.php │ │ │ ├── InteractsWithData.php │ │ │ ├── Localizable.php │ │ │ ├── ReadsClassAttributes.php │ │ │ └── Tappable.php │ │ ├── Uri.php │ │ ├── UriQueryString.php │ │ ├── ValidatedInput.php │ │ ├── ViewErrorBag.php │ │ ├── composer.json │ │ ├── functions.php │ │ └── helpers.php │ ├── Testing/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── Assert.php │ │ ├── AssertableJsonString.php │ │ ├── Concerns/ │ │ │ ├── AssertsStatusCodes.php │ │ │ ├── RunsInParallel.php │ │ │ ├── TestCaches.php │ │ │ ├── TestDatabases.php │ │ │ └── TestViews.php │ │ ├── Constraints/ │ │ │ ├── ArraySubset.php │ │ │ ├── CountInDatabase.php │ │ │ ├── HasInDatabase.php │ │ │ ├── NotSoftDeletedInDatabase.php │ │ │ ├── SeeInHtml.php │ │ │ ├── SeeInOrder.php │ │ │ └── SoftDeletedInDatabase.php │ │ ├── Exceptions/ │ │ │ └── InvalidArgumentException.php │ │ ├── Fluent/ │ │ │ ├── AssertableJson.php │ │ │ └── Concerns/ │ │ │ ├── Debugging.php │ │ │ ├── Has.php │ │ │ ├── Interaction.php │ │ │ └── Matching.php │ │ ├── LICENSE.md │ │ ├── LoggedExceptionCollection.php │ │ ├── ParallelConsoleOutput.php │ │ ├── ParallelRunner.php │ │ ├── ParallelTesting.php │ │ ├── ParallelTestingServiceProvider.php │ │ ├── PendingCommand.php │ │ ├── TestComponent.php │ │ ├── TestResponse.php │ │ ├── TestResponseAssert.php │ │ ├── TestView.php │ │ └── composer.json │ ├── Translation/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── ArrayLoader.php │ │ ├── CreatesPotentiallyTranslatedStrings.php │ │ ├── FileLoader.php │ │ ├── LICENSE.md │ │ ├── MessageSelector.php │ │ ├── PotentiallyTranslatedString.php │ │ ├── TranslationServiceProvider.php │ │ ├── Translator.php │ │ ├── composer.json │ │ └── lang/ │ │ └── en/ │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── Validation/ │ │ ├── .gitattributes │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ └── close-pull-request.yml │ │ ├── ClosureValidationRule.php │ │ ├── Concerns/ │ │ │ ├── FilterEmailValidation.php │ │ │ ├── FormatsMessages.php │ │ │ ├── ReplacesAttributes.php │ │ │ └── ValidatesAttributes.php │ │ ├── ConditionalRules.php │ │ ├── DatabasePresenceVerifier.php │ │ ├── DatabasePresenceVerifierInterface.php │ │ ├── Factory.php │ │ ├── InvokableValidationRule.php │ │ ├── LICENSE.md │ │ ├── NestedRules.php │ │ ├── NotPwnedVerifier.php │ │ ├── PresenceVerifierInterface.php │ │ ├── Rule.php │ │ ├── Rules/ │ │ │ ├── AnyOf.php │ │ │ ├── ArrayRule.php │ │ │ ├── Can.php │ │ │ ├── Contains.php │ │ │ ├── DatabaseRule.php │ │ │ ├── Date.php │ │ │ ├── Dimensions.php │ │ │ ├── DoesntContain.php │ │ │ ├── Email.php │ │ │ ├── Enum.php │ │ │ ├── ExcludeIf.php │ │ │ ├── ExcludeUnless.php │ │ │ ├── Exists.php │ │ │ ├── File.php │ │ │ ├── ImageFile.php │ │ │ ├── In.php │ │ │ ├── NotIn.php │ │ │ ├── Numeric.php │ │ │ ├── Password.php │ │ │ ├── ProhibitedIf.php │ │ │ ├── ProhibitedUnless.php │ │ │ ├── RequiredIf.php │ │ │ ├── RequiredUnless.php │ │ │ ├── StringRule.php │ │ │ └── Unique.php │ │ ├── UnauthorizedException.php │ │ ├── ValidatesWhenResolvedTrait.php │ │ ├── ValidationData.php │ │ ├── ValidationException.php │ │ ├── ValidationRuleParser.php │ │ ├── ValidationServiceProvider.php │ │ ├── Validator.php │ │ └── composer.json │ └── View/ │ ├── .gitattributes │ ├── .github/ │ │ └── workflows/ │ │ └── close-pull-request.yml │ ├── AnonymousComponent.php │ ├── AppendableAttributeValue.php │ ├── Compilers/ │ │ ├── BladeCompiler.php │ │ ├── Compiler.php │ │ ├── CompilerInterface.php │ │ ├── ComponentTagCompiler.php │ │ └── Concerns/ │ │ ├── CompilesAuthorizations.php │ │ ├── CompilesClasses.php │ │ ├── CompilesComments.php │ │ ├── CompilesComponents.php │ │ ├── CompilesConditionals.php │ │ ├── CompilesContexts.php │ │ ├── CompilesEchos.php │ │ ├── CompilesErrors.php │ │ ├── CompilesFragments.php │ │ ├── CompilesHelpers.php │ │ ├── CompilesIncludes.php │ │ ├── CompilesInjections.php │ │ ├── CompilesJs.php │ │ ├── CompilesJson.php │ │ ├── CompilesLayouts.php │ │ ├── CompilesLoops.php │ │ ├── CompilesRawPhp.php │ │ ├── CompilesSessions.php │ │ ├── CompilesStacks.php │ │ ├── CompilesStyles.php │ │ ├── CompilesTranslations.php │ │ └── CompilesUseStatements.php │ ├── Component.php │ ├── ComponentAttributeBag.php │ ├── ComponentSlot.php │ ├── Concerns/ │ │ ├── ManagesComponents.php │ │ ├── ManagesEvents.php │ │ ├── ManagesFragments.php │ │ ├── ManagesLayouts.php │ │ ├── ManagesLoops.php │ │ ├── ManagesStacks.php │ │ └── ManagesTranslations.php │ ├── DynamicComponent.php │ ├── Engines/ │ │ ├── CompilerEngine.php │ │ ├── Engine.php │ │ ├── EngineResolver.php │ │ ├── FileEngine.php │ │ └── PhpEngine.php │ ├── Factory.php │ ├── FileViewFinder.php │ ├── InvokableComponentVariable.php │ ├── LICENSE.md │ ├── Middleware/ │ │ └── ShareErrorsFromSession.php │ ├── View.php │ ├── ViewException.php │ ├── ViewFinderInterface.php │ ├── ViewName.php │ ├── ViewServiceProvider.php │ └── composer.json ├── tests/ │ ├── AfterEachTestExtension.php │ ├── AfterEachTestSubscriber.php │ ├── Auth/ │ │ ├── AuthAccessGateTest.php │ │ ├── AuthAccessResponseTest.php │ │ ├── AuthDatabaseTokenRepositoryTest.php │ │ ├── AuthDatabaseUserProviderTest.php │ │ ├── AuthEloquentUserProviderTest.php │ │ ├── AuthGuardTest.php │ │ ├── AuthHandlesAuthorizationTest.php │ │ ├── AuthListenersSendEmailVerificationNotificationHandleFunctionTest.php │ │ ├── AuthPasswordBrokerTest.php │ │ ├── AuthTokenGuardTest.php │ │ ├── AuthenticatableTest.php │ │ ├── AuthenticateMiddlewareTest.php │ │ ├── AuthorizeMiddlewareTest.php │ │ ├── AuthorizesResourcesTest.php │ │ ├── EnsureEmailIsVerifiedTest.php │ │ ├── Enums.php │ │ └── RedirectIfAuthenticatedMiddlewareTest.php │ ├── Broadcasting/ │ │ ├── AblyBroadcasterTest.php │ │ ├── BroadcastEventTest.php │ │ ├── BroadcasterTest.php │ │ ├── PusherBroadcasterTest.php │ │ ├── RedisBroadcasterTest.php │ │ └── UsePusherChannelsNamesTest.php │ ├── Bus/ │ │ ├── BusBatchTest.php │ │ ├── BusBatchableTest.php │ │ ├── BusDispatcherTest.php │ │ ├── BusPendingBatchTest.php │ │ ├── BusPendingDispatchTest.php │ │ └── QueueableTest.php │ ├── Cache/ │ │ ├── CacheApcStoreTest.php │ │ ├── CacheArrayStoreTest.php │ │ ├── CacheDatabaseStoreTest.php │ │ ├── CacheDynamoDbStoreTest.php │ │ ├── CacheEventsTest.php │ │ ├── CacheFileStoreTest.php │ │ ├── CacheManagerTest.php │ │ ├── CacheMemcachedConnectorTest.php │ │ ├── CacheMemcachedStoreTest.php │ │ ├── CacheMemoizedStoreTest.php │ │ ├── CacheNullStoreTest.php │ │ ├── CacheRateLimiterTest.php │ │ ├── CacheRedisStoreTest.php │ │ ├── CacheRepositoryTest.php │ │ ├── CacheSessionStoreTest.php │ │ ├── CacheSpyMemoTest.php │ │ ├── CacheTaggedCacheTest.php │ │ ├── ClearCommandTest.php │ │ ├── ConcurrencyLimiterTest.php │ │ ├── LimitTest.php │ │ └── RateLimiterTest.php │ ├── Conditionable/ │ │ └── ConditionableTest.php │ ├── Config/ │ │ └── RepositoryTest.php │ ├── Console/ │ │ ├── CacheCommandMutexTest.php │ │ ├── CommandMutexTest.php │ │ ├── CommandTest.php │ │ ├── CommandTrapTest.php │ │ ├── Concerns/ │ │ │ └── InteractsWithIOTest.php │ │ ├── ConfiguresPromptsTest.php │ │ ├── ConsoleApplicationTest.php │ │ ├── ConsoleEventSchedulerTest.php │ │ ├── ConsoleParserTest.php │ │ ├── ConsoleScheduledEventTest.php │ │ ├── Fixtures/ │ │ │ ├── FakeCommandWithArrayInputPrompting.php │ │ │ ├── FakeCommandWithInputPrompting.php │ │ │ ├── FakeSignalsRegistry.php │ │ │ └── JobToTestWithSchedule.php │ │ ├── OutputStyleTest.php │ │ ├── Scheduling/ │ │ │ ├── CacheEventMutexTest.php │ │ │ ├── CacheSchedulingMutexTest.php │ │ │ ├── EventTest.php │ │ │ ├── FrequencyTest.php │ │ │ └── ScheduleTest.php │ │ ├── SignalsTest.php │ │ └── View/ │ │ └── ComponentsTest.php │ ├── Container/ │ │ ├── AfterResolvingAttributeCallbackTest.php │ │ ├── ContainerCallTest.php │ │ ├── ContainerExtendTest.php │ │ ├── ContainerResolveNonInstantiableTest.php │ │ ├── ContainerTaggingTest.php │ │ ├── ContainerTest.php │ │ ├── ContextualAttributeBindingTest.php │ │ ├── ContextualBindingTest.php │ │ ├── ResolvingCallbackTest.php │ │ ├── RewindableGeneratorTest.php │ │ └── UtilTest.php │ ├── Cookie/ │ │ ├── CookieTest.php │ │ └── Middleware/ │ │ ├── AddQueuedCookiesToResponseTest.php │ │ └── EncryptCookiesTest.php │ ├── Database/ │ │ ├── DatabaseAbstractSchemaGrammarTest.php │ │ ├── DatabaseConcernsBuildsQueriesTraitTest.php │ │ ├── DatabaseConcernsHasAttributesTest.php │ │ ├── DatabaseConcernsPreventsCircularRecursionTest.php │ │ ├── DatabaseConnectionFactoryTest.php │ │ ├── DatabaseConnectionTest.php │ │ ├── DatabaseConnectorTest.php │ │ ├── DatabaseEloquentAsBinaryCastTest.php │ │ ├── DatabaseEloquentBelongsToManyAggregateTest.php │ │ ├── DatabaseEloquentBelongsToManyChunkByIdTest.php │ │ ├── DatabaseEloquentBelongsToManyCreateOrFirstTest.php │ │ ├── DatabaseEloquentBelongsToManyEachByIdTest.php │ │ ├── DatabaseEloquentBelongsToManyExpressionTest.php │ │ ├── DatabaseEloquentBelongsToManyLazyByIdTest.php │ │ ├── DatabaseEloquentBelongsToManyOrFailTest.php │ │ ├── DatabaseEloquentBelongsToManySyncReturnValueTypeTest.php │ │ ├── DatabaseEloquentBelongsToManySyncTouchesParentTest.php │ │ ├── DatabaseEloquentBelongsToManyWithAttributesPendingTest.php │ │ ├── DatabaseEloquentBelongsToManyWithAttributesTest.php │ │ ├── DatabaseEloquentBelongsToManyWithCastedAttributesTest.php │ │ ├── DatabaseEloquentBelongsToManyWithDefaultAttributesTest.php │ │ ├── DatabaseEloquentBelongsToManyWithoutTouchingTest.php │ │ ├── DatabaseEloquentBelongsToTest.php │ │ ├── DatabaseEloquentBuilderCreateOrFirstTest.php │ │ ├── DatabaseEloquentBuilderTest.php │ │ ├── DatabaseEloquentCollectionQueueableTest.php │ │ ├── DatabaseEloquentCollectionTest.php │ │ ├── DatabaseEloquentDynamicRelationsTest.php │ │ ├── DatabaseEloquentFactoryTest.php │ │ ├── DatabaseEloquentGlobalScopesTest.php │ │ ├── DatabaseEloquentHasManyCreateOrFirstTest.php │ │ ├── DatabaseEloquentHasManyTest.php │ │ ├── DatabaseEloquentHasManyThroughCreateOrFirstTest.php │ │ ├── DatabaseEloquentHasManyThroughIntegrationTest.php │ │ ├── DatabaseEloquentHasOneOfManyTest.php │ │ ├── DatabaseEloquentHasOneOrManyWithAttributesPendingTest.php │ │ ├── DatabaseEloquentHasOneOrManyWithAttributesTest.php │ │ ├── DatabaseEloquentHasOneTest.php │ │ ├── DatabaseEloquentHasOneThroughIntegrationTest.php │ │ ├── DatabaseEloquentHasOneThroughOfManyTest.php │ │ ├── DatabaseEloquentIntegrationTest.php │ │ ├── DatabaseEloquentIntegrationWithTablePrefixTest.php │ │ ├── DatabaseEloquentInverseRelationHasManyTest.php │ │ ├── DatabaseEloquentInverseRelationHasOneTest.php │ │ ├── DatabaseEloquentInverseRelationMorphManyTest.php │ │ ├── DatabaseEloquentInverseRelationMorphOneTest.php │ │ ├── DatabaseEloquentInverseRelationTest.php │ │ ├── DatabaseEloquentIrregularPluralTest.php │ │ ├── DatabaseEloquentLocalScopesTest.php │ │ ├── DatabaseEloquentModelAttributesTest.php │ │ ├── DatabaseEloquentModelTest.php │ │ ├── DatabaseEloquentMorphOneOfManyTest.php │ │ ├── DatabaseEloquentMorphTest.php │ │ ├── DatabaseEloquentMorphToManyTest.php │ │ ├── DatabaseEloquentMorphToTest.php │ │ ├── DatabaseEloquentPivotTest.php │ │ ├── DatabaseEloquentPolymorphicIntegrationTest.php │ │ ├── DatabaseEloquentPolymorphicRelationsIntegrationTest.php │ │ ├── DatabaseEloquentRelationTest.php │ │ ├── DatabaseEloquentRelationshipsTest.php │ │ ├── DatabaseEloquentResourceCollectionTest.php │ │ ├── DatabaseEloquentResourceModelTest.php │ │ ├── DatabaseEloquentSoftDeletesIntegrationTest.php │ │ ├── DatabaseEloquentStrictMorphsTest.php │ │ ├── DatabaseEloquentTimestampsTest.php │ │ ├── DatabaseEloquentWithAttributesPendingTest.php │ │ ├── DatabaseEloquentWithAttributesTest.php │ │ ├── DatabaseEloquentWithCastsTest.php │ │ ├── DatabaseIntegrationTest.php │ │ ├── DatabaseMariaDbBuilderTest.php │ │ ├── DatabaseMariaDbProcessorTest.php │ │ ├── DatabaseMariaDbQueryGrammarTest.php │ │ ├── DatabaseMariaDbSchemaBuilderTest.php │ │ ├── DatabaseMariaDbSchemaGrammarTest.php │ │ ├── DatabaseMariaDbSchemaStateTest.php │ │ ├── DatabaseMigrationCreatorTest.php │ │ ├── DatabaseMigrationInstallCommandTest.php │ │ ├── DatabaseMigrationMakeCommandTest.php │ │ ├── DatabaseMigrationMigrateCommandTest.php │ │ ├── DatabaseMigrationRefreshCommandTest.php │ │ ├── DatabaseMigrationRepositoryTest.php │ │ ├── DatabaseMigrationResetCommandTest.php │ │ ├── DatabaseMigrationRollbackCommandTest.php │ │ ├── DatabaseMigratorIntegrationTest.php │ │ ├── DatabaseMySQLSchemaBuilderTest.php │ │ ├── DatabaseMySqlBuilderTest.php │ │ ├── DatabaseMySqlProcessorTest.php │ │ ├── DatabaseMySqlQueryGrammarTest.php │ │ ├── DatabaseMySqlSchemaGrammarTest.php │ │ ├── DatabaseMySqlSchemaStateTest.php │ │ ├── DatabasePostgresBuilderTest.php │ │ ├── DatabasePostgresProcessorTest.php │ │ ├── DatabasePostgresQueryGrammarTest.php │ │ ├── DatabasePostgresSchemaBuilderTest.php │ │ ├── DatabasePostgresSchemaGrammarTest.php │ │ ├── DatabaseProcessorTest.php │ │ ├── DatabaseQueryBuilderTest.php │ │ ├── DatabaseQueryExceptionTest.php │ │ ├── DatabaseQueryGrammarTest.php │ │ ├── DatabaseSQLiteBuilderTest.php │ │ ├── DatabaseSQLiteProcessorTest.php │ │ ├── DatabaseSQLiteQueryGrammarTest.php │ │ ├── DatabaseSQLiteSchemaGrammarTest.php │ │ ├── DatabaseSchemaBlueprintTest.php │ │ ├── DatabaseSchemaBuilderIntegrationTest.php │ │ ├── DatabaseSchemaBuilderTest.php │ │ ├── DatabaseSeederTest.php │ │ ├── DatabaseSoftDeletingScopeTest.php │ │ ├── DatabaseSoftDeletingTest.php │ │ ├── DatabaseSoftDeletingTraitTest.php │ │ ├── DatabaseSqlServerQueryGrammarTest.php │ │ ├── DatabaseSqlServerSchemaGrammarTest.php │ │ ├── DatabaseSqliteSchemaStateTest.php │ │ ├── DatabaseTransactionsManagerTest.php │ │ ├── DatabaseTransactionsTest.php │ │ ├── EloquentHasOneOrManyDeprecationTest.php │ │ ├── EloquentModelCustomCastingTest.php │ │ ├── Enums.php │ │ ├── Fixtures/ │ │ │ ├── Enums/ │ │ │ │ ├── Bar.php │ │ │ │ └── Foo.php │ │ │ ├── Factories/ │ │ │ │ └── Money/ │ │ │ │ └── PriceFactory.php │ │ │ ├── Models/ │ │ │ │ ├── EloquentModelUsingNonIncrementedInt.php │ │ │ │ ├── EloquentModelUsingUlid.php │ │ │ │ ├── EloquentModelUsingUuid.php │ │ │ │ ├── EloquentResourceCollectionTestModel.php │ │ │ │ ├── EloquentResourceTestResourceModel.php │ │ │ │ ├── EloquentResourceTestResourceModelWithGuessableResource.php │ │ │ │ ├── EloquentResourceTestResourceModelWithUseResourceAttribute.php │ │ │ │ ├── EloquentResourceTestResourceModelWithUseResourceCollectionAttribute.php │ │ │ │ ├── Money/ │ │ │ │ │ └── Price.php │ │ │ │ └── User.php │ │ │ └── Resources/ │ │ │ ├── EloquentResourceCollectionTestResource.php │ │ │ ├── EloquentResourceTestJsonResource.php │ │ │ └── EloquentResourceTestJsonResourceCollection.php │ │ ├── PruneCommandTest.php │ │ ├── Pruning/ │ │ │ └── Models/ │ │ │ ├── AbstractPrunableModel.php │ │ │ ├── NonPrunableTestModel.php │ │ │ ├── NonPrunableTrait.php │ │ │ ├── PrunableTestModelWithPrunableRecords.php │ │ │ ├── PrunableTestModelWithoutPrunableRecords.php │ │ │ ├── PrunableTestSoftDeletedModelWithPrunableRecords.php │ │ │ ├── SomeClass.php │ │ │ └── SomeEnum.php │ │ ├── QueryDurationThresholdTest.php │ │ ├── SeedCommandTest.php │ │ ├── SqlServerBuilderTest.php │ │ ├── TableGuesserTest.php │ │ ├── migrations/ │ │ │ ├── connection_configured/ │ │ │ │ ├── 2022_02_21_000000_create_failed_jobs_table.php │ │ │ │ └── 2022_02_21_120000_create_jobs_table.php │ │ │ ├── multi_path/ │ │ │ │ ├── app/ │ │ │ │ │ ├── 2016_01_01_000000_create_users_table.php │ │ │ │ │ ├── 2019_08_08_000001_rename_table_one.php │ │ │ │ │ ├── 2019_08_08_000002_rename_table_two.php │ │ │ │ │ ├── 2019_08_08_000003_rename_table_three.php │ │ │ │ │ ├── 2019_08_08_000004_rename_table_four.php │ │ │ │ │ ├── 2019_08_08_000005_create_table_one.php │ │ │ │ │ ├── 2019_08_08_000006_create_table_two.php │ │ │ │ │ └── 2019_08_08_000008_create_table_four.php │ │ │ │ └── vendor/ │ │ │ │ ├── 2016_01_01_200000_create_flights_table.php │ │ │ │ ├── 2019_08_08_000001_rename_table_one.php │ │ │ │ ├── 2019_08_08_000002_rename_table_two.php │ │ │ │ ├── 2019_08_08_000003_rename_table_three.php │ │ │ │ ├── 2019_08_08_000004_rename_table_four.php │ │ │ │ ├── 2019_08_08_000005_create_table_one.php │ │ │ │ ├── 2019_08_08_000006_create_table_two.php │ │ │ │ ├── 2019_08_08_000007_create_table_three.php │ │ │ │ └── 2019_08_08_000008_create_table_four.php │ │ │ ├── one/ │ │ │ │ ├── 2016_01_01_000000_create_users_table.php │ │ │ │ └── 2016_01_01_100000_create_password_resets_table.php │ │ │ ├── should_run/ │ │ │ │ └── 2016_01_01_200000_create_flights_table.php │ │ │ └── two/ │ │ │ └── 2016_01_01_200000_create_flights_table.php │ │ └── stubs/ │ │ ├── EloquentModelNamespacedStub.php │ │ ├── MigrationCreatorFakeMigration.php │ │ ├── TestCast.php │ │ ├── TestEnum.php │ │ ├── TestValueObject.php │ │ └── schema.sql │ ├── Encryption/ │ │ └── EncrypterTest.php │ ├── Events/ │ │ ├── BroadcastedEventsTest.php │ │ ├── EventsDispatcherTest.php │ │ ├── EventsSubscriberTest.php │ │ └── QueuedEventsTest.php │ ├── Filesystem/ │ │ ├── FilesystemAdapterTest.php │ │ ├── FilesystemManagerTest.php │ │ ├── FilesystemTest.php │ │ └── JoinPathsHelperTest.php │ ├── Foundation/ │ │ ├── Bootstrap/ │ │ │ ├── HandleExceptionsTest.php │ │ │ ├── LoadConfigurationTest.php │ │ │ └── LoadEnvironmentVariablesTest.php │ │ ├── Configuration/ │ │ │ ├── ExceptionsTest.php │ │ │ └── MiddlewareTest.php │ │ ├── Console/ │ │ │ ├── AboutCommandTest.php │ │ │ ├── CliDumperTest.php │ │ │ ├── KernelTest.php │ │ │ ├── RouteListCommandTest.php │ │ │ └── ServeCommandLogParserTest.php │ │ ├── Exceptions/ │ │ │ └── Renderer/ │ │ │ ├── FrameTest.php │ │ │ └── ListenerTest.php │ │ ├── FoundationAliasLoaderTest.php │ │ ├── FoundationApplicationBuilderTest.php │ │ ├── FoundationApplicationTest.php │ │ ├── FoundationAuthenticationTest.php │ │ ├── FoundationAuthorizesRequestsTraitTest.php │ │ ├── FoundationCacheBasedMaintenanceModeTest.php │ │ ├── FoundationDocsCommandTest.php │ │ ├── FoundationEnvironmentDetectorTest.php │ │ ├── FoundationExceptionsHandlerTest.php │ │ ├── FoundationFormRequestTest.php │ │ ├── FoundationHelpersTest.php │ │ ├── FoundationInteractsWithDatabaseTest.php │ │ ├── FoundationInteractsWithTimeTest.php │ │ ├── FoundationPackageManifestTest.php │ │ ├── FoundationProviderRepositoryTest.php │ │ ├── FoundationViteTest.php │ │ ├── Http/ │ │ │ ├── HtmlDumperTest.php │ │ │ ├── KernelTest.php │ │ │ └── Middleware/ │ │ │ ├── ConvertEmptyStringsToNullTest.php │ │ │ ├── TransformsRequestTest.php │ │ │ ├── TrimStringsTest.php │ │ │ └── ValidatePathEncodingTest.php │ │ ├── Testing/ │ │ │ ├── BootTraitsTest.php │ │ │ ├── Concerns/ │ │ │ │ ├── InteractsWithContainerTest.php │ │ │ │ ├── InteractsWithViewsTest.php │ │ │ │ └── MakesHttpRequestsTest.php │ │ │ ├── DatabaseMigrationsTest.php │ │ │ ├── DatabaseTransactionsManagerTest.php │ │ │ ├── DatabaseTruncationTest.php │ │ │ ├── RefreshDatabaseTest.php │ │ │ ├── Traits/ │ │ │ │ └── CanConfigureMigrationCommandsTest.php │ │ │ └── WormholeTest.php │ │ └── fixtures/ │ │ ├── always-dusk-ask-strategy.php │ │ ├── bad-return-strategy.php │ │ ├── bad-syntax-strategy.php │ │ ├── config/ │ │ │ ├── app.php │ │ │ ├── broadcasting.php │ │ │ ├── cache.php │ │ │ ├── custom.php │ │ │ ├── database.php │ │ │ ├── filesystems.php │ │ │ ├── logging.php │ │ │ ├── mail.php │ │ │ └── queue.php │ │ ├── docs.json │ │ ├── exception-throwing-strategy.php │ │ ├── fake-compiled-view-without-source-map.php │ │ ├── fake-compiled-view.php │ │ ├── jetstream-manifest.json │ │ ├── laravel1/ │ │ │ └── composer.json │ │ ├── laravel2/ │ │ │ └── composer.json │ │ ├── open-strategy.php │ │ ├── prefetching-manifest.json │ │ ├── process-failure-strategy.php │ │ ├── process-interrupt-strategy.php │ │ └── vendor/ │ │ └── composer/ │ │ └── installed.json │ ├── Hashing/ │ │ └── HasherTest.php │ ├── Http/ │ │ ├── Enums.php │ │ ├── HttpClientTest.php │ │ ├── HttpJsonResponseTest.php │ │ ├── HttpMimeTypeTest.php │ │ ├── HttpRedirectResponseTest.php │ │ ├── HttpRequestTest.php │ │ ├── HttpResponseTest.php │ │ ├── HttpTestingFileFactoryTest.php │ │ ├── HttpUploadedFileTest.php │ │ ├── JsonResourceTest.php │ │ ├── Middleware/ │ │ │ ├── CacheTest.php │ │ │ ├── PreventRequestForgeryTest.php │ │ │ ├── TrimStringsTest.php │ │ │ ├── TrustProxiesTest.php │ │ │ └── VitePreloadingTest.php │ │ ├── Resources/ │ │ │ └── JsonApi/ │ │ │ └── JsonApiResourceTest.php │ │ └── fixtures/ │ │ └── test.txt │ ├── IgnoreSkippedPrinter.php │ ├── Integration/ │ │ ├── Auth/ │ │ │ ├── ApiAuthenticationWithEloquentTest.php │ │ │ ├── AuthenticationTest.php │ │ │ ├── Fixtures/ │ │ │ │ ├── AuthenticationTestUser.php │ │ │ │ ├── Models/ │ │ │ │ │ ├── AuthenticationTestUser.php │ │ │ │ │ ├── Nested/ │ │ │ │ │ │ ├── SubTestUser.php │ │ │ │ │ │ └── TopTestUser.php │ │ │ │ │ └── Policies/ │ │ │ │ │ └── Nested/ │ │ │ │ │ └── SubTestUserPolicy.php │ │ │ │ └── Policies/ │ │ │ │ ├── AuthenticationTestUserPolicy.php │ │ │ │ └── Nested/ │ │ │ │ └── TopTestUserPolicy.php │ │ │ ├── ForgotPasswordTest.php │ │ │ ├── ForgotPasswordWithoutDefaultRoutesTest.php │ │ │ ├── GatePolicyResolutionTest.php │ │ │ ├── Middleware/ │ │ │ │ ├── RedirectIfAuthenticatedTest.php │ │ │ │ └── RequirePasswordTest.php │ │ │ └── RehashOnLogoutOtherDevicesTest.php │ │ ├── Broadcasting/ │ │ │ ├── BroadcastManagerTest.php │ │ │ └── SendingBroadcastsViaAnonymousEventTest.php │ │ ├── Cache/ │ │ │ ├── ArrayCacheFunnelTest.php │ │ │ ├── CacheFunnelTestCase.php │ │ │ ├── DatabaseCacheFunnelTest.php │ │ │ ├── DynamoDbStoreTest.php │ │ │ ├── FailoverStoreTest.php │ │ │ ├── FileCacheFunnelTest.php │ │ │ ├── FileCacheLockTest.php │ │ │ ├── Fixtures/ │ │ │ │ └── Unserializable.php │ │ │ ├── MemcachedCacheLockTestCase.php │ │ │ ├── MemcachedIntegrationTestCase.php │ │ │ ├── MemcachedTaggedCacheTestCase.php │ │ │ ├── MemoizedStoreTest.php │ │ │ ├── NoLockTest.php │ │ │ ├── PhpRedisBackoffTest.php │ │ │ ├── PhpRedisCacheLockTest.php │ │ │ ├── Psr6RedisTest.php │ │ │ ├── RedisCacheFunnelTest.php │ │ │ ├── RedisCacheIntegrationTest.php │ │ │ ├── RedisCacheLockTest.php │ │ │ ├── RedisStoreTest.php │ │ │ └── RepositoryTest.php │ │ ├── Concurrency/ │ │ │ ├── ConcurrencyTest.php │ │ │ └── Console/ │ │ │ └── InvokeSerializedClosureCommandTest.php │ │ ├── Console/ │ │ │ ├── CallCommandsTest.php │ │ │ ├── CallbackSchedulingTest.php │ │ │ ├── CommandDurationThresholdTest.php │ │ │ ├── CommandEventsTest.php │ │ │ ├── CommandManualFailTest.php │ │ │ ├── CommandSchedulingTest.php │ │ │ ├── ConsoleApplicationTest.php │ │ │ ├── EnvironmentDecryptCommandTest.php │ │ │ ├── EnvironmentEncryptCommandTest.php │ │ │ ├── Events/ │ │ │ │ └── EventListCommandTest.php │ │ │ ├── GeneratorCommandTest.php │ │ │ ├── JobSchedulingTest.php │ │ │ ├── PromptsAssertionTest.php │ │ │ ├── PromptsValidationTest.php │ │ │ ├── Scheduling/ │ │ │ │ ├── CallbackEventTest.php │ │ │ │ ├── EventPingTest.php │ │ │ │ ├── ScheduleGroupTest.php │ │ │ │ ├── ScheduleListCommandTest.php │ │ │ │ ├── SchedulePauseCommandTest.php │ │ │ │ ├── ScheduleResumeCommandTest.php │ │ │ │ ├── ScheduleRunCommandTest.php │ │ │ │ ├── ScheduleTestCommandTest.php │ │ │ │ └── SubMinuteSchedulingTest.php │ │ │ └── UniqueJobSchedulingTest.php │ │ ├── Container/ │ │ │ ├── BuildableIntegrationTest.php │ │ │ └── ContextualAttributesBindingIntegrationTest.php │ │ ├── Cookie/ │ │ │ └── CookieTest.php │ │ ├── Database/ │ │ │ ├── AfterQueryTest.php │ │ │ ├── ConnectionThreadsCountTest.php │ │ │ ├── DatabaseCacheStoreTest.php │ │ │ ├── DatabaseConnectionsTest.php │ │ │ ├── DatabaseCustomCastsTest.php │ │ │ ├── DatabaseEloquentBroadcastingTest.php │ │ │ ├── DatabaseEloquentModelAttributeCastingTest.php │ │ │ ├── DatabaseEloquentModelCustomCastingTest.php │ │ │ ├── DatabaseLockTest.php │ │ │ ├── DatabaseTestCase.php │ │ │ ├── DatabaseTransactionsTest.php │ │ │ ├── EloquentAggregateTest.php │ │ │ ├── EloquentBelongsToManyTest.php │ │ │ ├── EloquentBelongsToTest.php │ │ │ ├── EloquentCollectionFreshTest.php │ │ │ ├── EloquentCollectionLoadCountTest.php │ │ │ ├── EloquentCollectionLoadMissingTest.php │ │ │ ├── EloquentCursorPaginateTest.php │ │ │ ├── EloquentCustomPivotCastTest.php │ │ │ ├── EloquentDeleteTest.php │ │ │ ├── EloquentEagerLoadingLimitTest.php │ │ │ ├── EloquentHasManyTest.php │ │ │ ├── EloquentHasManyThroughTest.php │ │ │ ├── EloquentHasOneIsTest.php │ │ │ ├── EloquentHasOneOfManyTest.php │ │ │ ├── EloquentLazyEagerLoadingTest.php │ │ │ ├── EloquentMassPrunableTest.php │ │ │ ├── EloquentModelCustomEventsTest.php │ │ │ ├── EloquentModelDateCastingTest.php │ │ │ ├── EloquentModelDecimalCastingTest.php │ │ │ ├── EloquentModelEncryptedCastingTest.php │ │ │ ├── EloquentModelEncryptedDirtyTest.php │ │ │ ├── EloquentModelEnumCastingTest.php │ │ │ ├── EloquentModelHashedCastingTest.php │ │ │ ├── EloquentModelImmutableDateCastingTest.php │ │ │ ├── EloquentModelJsonCastingTest.php │ │ │ ├── EloquentModelLoadCountTest.php │ │ │ ├── EloquentModelLoadMaxTest.php │ │ │ ├── EloquentModelLoadMinTest.php │ │ │ ├── EloquentModelLoadMissingTest.php │ │ │ ├── EloquentModelLoadSumTest.php │ │ │ ├── EloquentModelRefreshTest.php │ │ │ ├── EloquentModelRelationAutoloadTest.php │ │ │ ├── EloquentModelScopeTest.php │ │ │ ├── EloquentModelStringCastingTest.php │ │ │ ├── EloquentModelTest.php │ │ │ ├── EloquentModelWithoutEventsTest.php │ │ │ ├── EloquentMorphConstrainTest.php │ │ │ ├── EloquentMorphCountEagerLoadingTest.php │ │ │ ├── EloquentMorphCountLazyEagerLoadingTest.php │ │ │ ├── EloquentMorphEagerLoadingTest.php │ │ │ ├── EloquentMorphLazyEagerLoadingTest.php │ │ │ ├── EloquentMorphManyTest.php │ │ │ ├── EloquentMorphOneIsTest.php │ │ │ ├── EloquentMorphToGlobalScopesTest.php │ │ │ ├── EloquentMorphToIsTest.php │ │ │ ├── EloquentMorphToLazyEagerLoadingTest.php │ │ │ ├── EloquentMorphToSelectTest.php │ │ │ ├── EloquentMorphToTouchesTest.php │ │ │ ├── EloquentMultiDimensionalArrayEagerLoadingTest.php │ │ │ ├── EloquentNamedScopeAttributeTest.php │ │ │ ├── EloquentPaginateTest.php │ │ │ ├── EloquentPivotEventsTest.php │ │ │ ├── EloquentPivotSerializationTest.php │ │ │ ├── EloquentPivotTest.php │ │ │ ├── EloquentPivotWithoutTimestampTest.fixtures.php │ │ │ ├── EloquentPivotWithoutTimestampTest.php │ │ │ ├── EloquentPrunableTest.php │ │ │ ├── EloquentPushTest.php │ │ │ ├── EloquentStrictLoadingTest.php │ │ │ ├── EloquentThroughTest.php │ │ │ ├── EloquentTouchParentWithGlobalScopeTest.php │ │ │ ├── EloquentTransactionWithAfterCommitTest.php │ │ │ ├── EloquentTransactionWithAfterCommitTests.php │ │ │ ├── EloquentTransactionWithAfterCommitUsingDatabaseMigrationsTest.php │ │ │ ├── EloquentTransactionWithAfterCommitUsingDatabaseTransactionsTest.php │ │ │ ├── EloquentTransactionWithAfterCommitUsingRefreshDatabaseOnMultipleConnectionsTest.php │ │ │ ├── EloquentTransactionWithAfterCommitUsingRefreshDatabaseTest.php │ │ │ ├── EloquentUniqueStringPrimaryKeysTest.php │ │ │ ├── EloquentUpdateTest.php │ │ │ ├── EloquentWhereHasMorphTest.php │ │ │ ├── EloquentWhereHasTest.php │ │ │ ├── EloquentWhereTest.php │ │ │ ├── EloquentWithCountTest.php │ │ │ ├── Enums.php │ │ │ ├── EventConnectionEstablishedTest.php │ │ │ ├── Fixtures/ │ │ │ │ ├── NamedScopeUser.php │ │ │ │ ├── Post.php │ │ │ │ ├── PostStringyKey.php │ │ │ │ └── User.php │ │ │ ├── MariaDb/ │ │ │ │ ├── DatabaseEloquentMariaDbIntegrationTest.php │ │ │ │ ├── DatabaseEmulatePreparesMariaDbConnectionTest.php │ │ │ │ ├── DatabaseMariaDbConnectionTest.php │ │ │ │ ├── DatabaseMariaDbSchemaBuilderAlterTableWithEnumTest.php │ │ │ │ ├── DatabaseMariaDbSchemaBuilderTest.php │ │ │ │ ├── EloquentCastTest.php │ │ │ │ ├── EscapeTest.php │ │ │ │ ├── FulltextTest.php │ │ │ │ ├── JsonLikeTest.php │ │ │ │ └── MariaDbTestCase.php │ │ │ ├── MigrateWithRealpathTest.php │ │ │ ├── MigrationServiceProviderTest.php │ │ │ ├── MigratorEventsTest.php │ │ │ ├── ModelInspectorTest.php │ │ │ ├── MySql/ │ │ │ │ ├── DatabaseEloquentMySqlIntegrationTest.php │ │ │ │ ├── DatabaseEmulatePreparesMySqlConnectionTest.php │ │ │ │ ├── DatabaseMySqlConnectionTest.php │ │ │ │ ├── DatabaseMySqlSchemaBuilderAlterTableWithEnumTest.php │ │ │ │ ├── DatabaseMySqlSchemaBuilderTest.php │ │ │ │ ├── EloquentCastTest.php │ │ │ │ ├── EscapeTest.php │ │ │ │ ├── FulltextTest.php │ │ │ │ ├── JoinLateralTest.php │ │ │ │ └── MySqlTestCase.php │ │ │ ├── Postgres/ │ │ │ │ ├── DatabaseEloquentPostgresIntegrationTest.php │ │ │ │ ├── DatabasePostgresConnectionTest.php │ │ │ │ ├── EscapeTest.php │ │ │ │ ├── FulltextTest.php │ │ │ │ ├── JoinLateralTest.php │ │ │ │ ├── PostgresSchemaBuilderTest.php │ │ │ │ └── PostgresTestCase.php │ │ │ ├── QueryBuilderTest.php │ │ │ ├── QueryBuilderUpdateTest.php │ │ │ ├── QueryBuilderWhereLikeTest.php │ │ │ ├── QueryingWithEnumsTest.php │ │ │ ├── Queue/ │ │ │ │ ├── BatchableTransactionTest.php │ │ │ │ ├── Fixtures/ │ │ │ │ │ ├── TimeOutJobWithNestedTransactions.php │ │ │ │ │ ├── TimeOutJobWithTransaction.php │ │ │ │ │ ├── TimeOutNonBatchableJobWithNestedTransactions.php │ │ │ │ │ └── TimeOutNonBatchableJobWithTransaction.php │ │ │ │ └── QueueTransactionTest.php │ │ │ ├── RefreshCommandTest.php │ │ │ ├── SchemaBuilderSchemaNameTest.php │ │ │ ├── SchemaBuilderTest.php │ │ │ ├── SqlServer/ │ │ │ │ ├── DatabaseEloquentSqlServerIntegrationTest.php │ │ │ │ ├── DatabaseSqlServerConnectionTest.php │ │ │ │ ├── DatabaseSqlServerSchemaBuilderTest.php │ │ │ │ ├── EscapeTest.php │ │ │ │ ├── JoinLateralTest.php │ │ │ │ └── SqlServerTestCase.php │ │ │ ├── Sqlite/ │ │ │ │ ├── ConnectorTest.php │ │ │ │ ├── Console/ │ │ │ │ │ └── MigrateFreshCommandWithJournalModeWalTest.php │ │ │ │ ├── DatabaseSchemaBlueprintTest.php │ │ │ │ ├── DatabaseSchemaBuilderTest.php │ │ │ │ ├── DatabaseSqliteConnectionTest.php │ │ │ │ ├── DatabaseSqliteSchemaBuilderTest.php │ │ │ │ ├── EloquentModelConnectionsTest.php │ │ │ │ ├── EscapeTest.php │ │ │ │ ├── SchemaBuilderSchemaNameTest.php │ │ │ │ └── SchemaStateTest.php │ │ │ ├── TimestampTypeTest.php │ │ │ └── stubs/ │ │ │ ├── 2014_10_12_000000_create_members_table.php │ │ │ └── 2014_10_13_000000_skipped_migration.php │ │ ├── Encryption/ │ │ │ └── EncryptionTest.php │ │ ├── Events/ │ │ │ ├── DeferEventsTest.php │ │ │ ├── EventFakeTest.php │ │ │ ├── ListenerTest.php │ │ │ ├── QueuedClosureListenerTest.php │ │ │ └── ShouldDispatchAfterCommitEventTest.php │ │ ├── Filesystem/ │ │ │ ├── FilesystemServiceProviderTest.php │ │ │ ├── FilesystemTest.php │ │ │ ├── ReceiveFileTest.php │ │ │ ├── ServeFileTest.php │ │ │ └── StorageTest.php │ │ ├── Foundation/ │ │ │ ├── CloudTest.php │ │ │ ├── Configuration/ │ │ │ │ ├── WithScheduleTest.php │ │ │ │ └── stubs/ │ │ │ │ └── console.php │ │ │ ├── Console/ │ │ │ │ ├── AboutCommandTest.php │ │ │ │ ├── ClosureCommandTest.php │ │ │ │ ├── ConfigCacheCommandTest.php │ │ │ │ ├── ConfigPublishCommandTest.php │ │ │ │ ├── OptimizeClearCommandTest.php │ │ │ │ └── OptimizeCommandTest.php │ │ │ ├── CoreContainerAliasesTest.php │ │ │ ├── DiscoverEventsTest.php │ │ │ ├── ExceptionHandlerTest.php │ │ │ ├── Exceptions/ │ │ │ │ ├── RenderBladeFilesTest.php │ │ │ │ └── RendererTest.php │ │ │ ├── Fixtures/ │ │ │ │ ├── Console/ │ │ │ │ │ └── ThrowExceptionCommand.php │ │ │ │ ├── EventDiscovery/ │ │ │ │ │ ├── Events/ │ │ │ │ │ │ ├── EventOne.php │ │ │ │ │ │ └── EventTwo.php │ │ │ │ │ ├── Listeners/ │ │ │ │ │ │ ├── AbstractListener.php │ │ │ │ │ │ ├── Listener.php │ │ │ │ │ │ ├── ListenerInterface.php │ │ │ │ │ │ └── random.js │ │ │ │ │ └── UnionListeners/ │ │ │ │ │ └── UnionListener.php │ │ │ │ ├── Logs/ │ │ │ │ │ └── ThrowExceptionLogHandler.php │ │ │ │ ├── MalformedErrorViews/ │ │ │ │ │ └── errors/ │ │ │ │ │ ├── 404.blade.php │ │ │ │ │ └── 500.blade.php │ │ │ │ └── Providers/ │ │ │ │ ├── ThrowExceptionServiceProvider.php │ │ │ │ └── ThrowUncaughtExceptionServiceProvider.php │ │ │ ├── FoundationHelpersTest.php │ │ │ ├── FoundationServiceProvidersTest.php │ │ │ ├── MaintenanceModeTest.php │ │ │ ├── RoutingServiceProviderTest.php │ │ │ ├── Support/ │ │ │ │ └── Providers/ │ │ │ │ ├── RouteServiceProviderHealthTest.php │ │ │ │ ├── RouteServiceProviderTest.php │ │ │ │ └── fixtures/ │ │ │ │ └── web.php │ │ │ └── Testing/ │ │ │ └── Concerns/ │ │ │ ├── InteractsWithAuthenticationTest.php │ │ │ └── MakeHttpRequestsTest.php │ │ ├── Generators/ │ │ │ ├── CacheTableCommandTest.php │ │ │ ├── CastMakeCommandTest.php │ │ │ ├── ChannelMakeCommandTest.php │ │ │ ├── ClassMakeCommandTest.php │ │ │ ├── ComponentMakeCommandTest.php │ │ │ ├── ConsoleMakeCommandTest.php │ │ │ ├── ControllerMakeCommandTest.php │ │ │ ├── EnumMakeCommandTest.php │ │ │ ├── EventMakeCommandTest.php │ │ │ ├── ExceptionMakeCommandTest.php │ │ │ ├── FactoryMakeCommandTest.php │ │ │ ├── InterfaceMakeCommandTest.php │ │ │ ├── JobMakeCommandTest.php │ │ │ ├── JobMiddlewareMakeCommandTest.php │ │ │ ├── ListenerMakeCommandTest.php │ │ │ ├── MailMakeCommandTest.php │ │ │ ├── MiddlewareMakeCommandTest.php │ │ │ ├── MigrateMakeCommandTest.php │ │ │ ├── ModelMakeCommandTest.php │ │ │ ├── NotificationMakeCommandTest.php │ │ │ ├── NotificationTableCommandTest.php │ │ │ ├── ObserverMakeCommandTest.php │ │ │ ├── PolicyMakeCommandTest.php │ │ │ ├── ProviderMakeCommandTest.php │ │ │ ├── QueueBatchesTableCommandTest.php │ │ │ ├── QueueFailedTableCommandTest.php │ │ │ ├── QueueTableCommandTest.php │ │ │ ├── RequestMakeCommandTest.php │ │ │ ├── ResourceMakeCommandTest.php │ │ │ ├── RuleMakeCommandTest.php │ │ │ ├── SeederMakeCommandTest.php │ │ │ ├── SessionTableCommandTest.php │ │ │ ├── TestCase.php │ │ │ ├── TestMakeCommandTest.php │ │ │ ├── TraitMakeCommandTest.php │ │ │ └── ViewMakeCommandTest.php │ │ ├── Http/ │ │ │ ├── Fixtures/ │ │ │ │ ├── AnonymousResourceCollectionWithPaginationInformation.php │ │ │ │ ├── Author.php │ │ │ │ ├── AuthorResource.php │ │ │ │ ├── AuthorResourceWithOptionalRelationship.php │ │ │ │ ├── CommentCollection.php │ │ │ │ ├── EmptyPostCollectionResource.php │ │ │ │ ├── EmptyPostResource.php │ │ │ │ ├── JsonSerializableResource.php │ │ │ │ ├── ObjectResource.php │ │ │ │ ├── Post.php │ │ │ │ ├── PostCollectionResource.php │ │ │ │ ├── PostCollectionResourceWithPaginationInformation.php │ │ │ │ ├── PostModelCollectionResource.php │ │ │ │ ├── PostResource.php │ │ │ │ ├── PostResourceWithAnonymousResourceCollectionWithPaginationInformation.php │ │ │ │ ├── PostResourceWithExtraData.php │ │ │ │ ├── PostResourceWithJsonOptions.php │ │ │ │ ├── PostResourceWithJsonOptionsAndTypeHints.php │ │ │ │ ├── PostResourceWithOptionalAppendedAttributes.php │ │ │ │ ├── PostResourceWithOptionalAttributes.php │ │ │ │ ├── PostResourceWithOptionalData.php │ │ │ │ ├── PostResourceWithOptionalHasAttributes.php │ │ │ │ ├── PostResourceWithOptionalMerging.php │ │ │ │ ├── PostResourceWithOptionalPivotRelationship.php │ │ │ │ ├── PostResourceWithOptionalRelationship.php │ │ │ │ ├── PostResourceWithOptionalRelationshipAggregates.php │ │ │ │ ├── PostResourceWithOptionalRelationshipCounts.php │ │ │ │ ├── PostResourceWithOptionalRelationshipExists.php │ │ │ │ ├── PostResourceWithOptionalRelationshipUsingNamedParameters.php │ │ │ │ ├── PostResourceWithUnlessOptionalData.php │ │ │ │ ├── PostResourceWithoutWrap.php │ │ │ │ ├── ReallyEmptyPostResource.php │ │ │ │ ├── ResourceWithPreservedKeys.php │ │ │ │ ├── SerializablePostResource.php │ │ │ │ └── Subscription.php │ │ │ ├── HttpClientTest.php │ │ │ ├── JsonResponseTest.php │ │ │ ├── Middleware/ │ │ │ │ ├── HandleCorsTest.php │ │ │ │ ├── PreventRequestForgeryExceptStub.php │ │ │ │ └── PreventRequestForgeryExceptTest.php │ │ │ ├── RequestDurationThresholdTest.php │ │ │ ├── ResourceTest.php │ │ │ ├── Resources/ │ │ │ │ ├── Json/ │ │ │ │ │ └── ResourceCollectionTest.php │ │ │ │ └── JsonApi/ │ │ │ │ ├── Fixtures/ │ │ │ │ │ ├── ArrayBackedJsonApiResource.php │ │ │ │ │ ├── AuthorResource.php │ │ │ │ │ ├── Comment.php │ │ │ │ │ ├── CommentFactory.php │ │ │ │ │ ├── CommentResource.php │ │ │ │ │ ├── Membership.php │ │ │ │ │ ├── Post.php │ │ │ │ │ ├── PostFactory.php │ │ │ │ │ ├── PostResource.php │ │ │ │ │ ├── Profile.php │ │ │ │ │ ├── ProfileFactory.php │ │ │ │ │ ├── ProfileResource.php │ │ │ │ │ ├── Team.php │ │ │ │ │ ├── TeamFactory.php │ │ │ │ │ ├── User.php │ │ │ │ │ ├── UserResource.php │ │ │ │ │ ├── UserWithArrayRelationshipResource.php │ │ │ │ │ └── migrations.php │ │ │ │ ├── JsonApiCollectionTest.php │ │ │ │ ├── JsonApiRequestTest.php │ │ │ │ ├── JsonApiResourceTest.php │ │ │ │ └── TestCase.php │ │ │ ├── ResponseTest.php │ │ │ ├── ThrottleRequestsTest.php │ │ │ └── ThrottleRequestsWithRedisTest.php │ │ ├── Log/ │ │ │ ├── ContextIntegrationTest.php │ │ │ └── LoggingIntegrationTest.php │ │ ├── Mail/ │ │ │ ├── AttachingFromStorageTest.php │ │ │ ├── Fixtures/ │ │ │ │ ├── basic.blade.php │ │ │ │ ├── embed-data.blade.php │ │ │ │ ├── embed-image.blade.php │ │ │ │ ├── embed-multiline.blade.php │ │ │ │ ├── embed.blade.php │ │ │ │ ├── mail/ │ │ │ │ │ └── taylor.blade.php │ │ │ │ ├── message-with-template.blade.php │ │ │ │ ├── message.blade.php │ │ │ │ ├── table-with-template.blade.php │ │ │ │ ├── text.blade.php │ │ │ │ ├── timestamp.blade.php │ │ │ │ └── view.blade.php │ │ │ ├── MailableTestCase.php │ │ │ ├── MailableWithSecuredEncodingTest.php │ │ │ ├── MailableWithoutSecuredEncodingTest.php │ │ │ ├── MarkdownParserTest.php │ │ │ ├── RenderingMailWithLocaleTest.php │ │ │ ├── SendingMailWithLocaleTest.php │ │ │ ├── SendingMarkdownMailTest.php │ │ │ ├── SendingQueuedMailTest.php │ │ │ └── SentMessageMailTest.php │ │ ├── Migration/ │ │ │ ├── MigratorTest.php │ │ │ ├── fixtures/ │ │ │ │ ├── 2014_10_12_000000_create_people_table.php │ │ │ │ ├── 2015_10_04_000000_modify_people_table.php │ │ │ │ ├── 2016_10_04_000000_modify_people_table.php │ │ │ │ └── 2017_10_04_000000_add_age_to_people.php │ │ │ └── pretending/ │ │ │ ├── 2014_10_12_000000_create_people_is_dynamic_table.php │ │ │ ├── 2014_10_12_000000_create_people_non_dynamic_table.php │ │ │ ├── 2023_10_17_000000_dynamic_content_is_shown.php │ │ │ └── 2023_10_17_000000_dynamic_content_not_shown.php │ │ ├── Notifications/ │ │ │ ├── DatabaseNotificationTest.php │ │ │ ├── Fixtures/ │ │ │ │ ├── greeting.blade.php │ │ │ │ ├── html.blade.php │ │ │ │ ├── mail/ │ │ │ │ │ ├── blank.blade.php │ │ │ │ │ └── color-test.blade.php │ │ │ │ ├── markdown.blade.php │ │ │ │ └── plain.blade.php │ │ │ ├── SendingMailNotificationsTest.php │ │ │ ├── SendingMailableNotificationsTest.php │ │ │ ├── SendingNotificationsViaAnonymousNotifiableTest.php │ │ │ └── SendingNotificationsWithLocaleTest.php │ │ ├── Queue/ │ │ │ ├── CallQueuedHandlerTest.php │ │ │ ├── CustomPayloadTest.php │ │ │ ├── DeleteModelWhenMissingTest.php │ │ │ ├── DeleteNotificationWhenMissingModelTest.php │ │ │ ├── DynamoBatchTest.php │ │ │ ├── DynamoBatchTestWithTTL.php │ │ │ ├── Fixtures/ │ │ │ │ └── Jobs/ │ │ │ │ └── DeleteUser.php │ │ │ ├── JobChainingTest.php │ │ │ ├── JobDispatchingTest.php │ │ │ ├── JobEncryptionTest.php │ │ │ ├── ModelSerializationTest.php │ │ │ ├── QueueConnectionTest.php │ │ │ ├── QueueFakeTest.php │ │ │ ├── QueueTestCase.php │ │ │ ├── QueuedListenersTest.php │ │ │ ├── RateLimitedTest.php │ │ │ ├── RateLimitedWithRedisTest.php │ │ │ ├── RedisQueueTest.php │ │ │ ├── SerializableClosureV1QueueTest.php │ │ │ ├── SkipIfBatchCancelledTest.php │ │ │ ├── SkipMiddlewareTest.php │ │ │ ├── ThrottlesExceptionsTest.php │ │ │ ├── ThrottlesExceptionsWithRedisTest.php │ │ │ ├── UniqueJobTest.php │ │ │ ├── UniqueUntilProcessingJobTest.php │ │ │ ├── WithoutOverlappingJobsTest.php │ │ │ ├── WorkCommandTest.php │ │ │ └── typed-properties.php │ │ ├── Redis/ │ │ │ └── PredisConnectionTest.php │ │ ├── Routing/ │ │ │ ├── AbilityBackedEnum.php │ │ │ ├── AuthorizeMiddlewareAttributeTest.php │ │ │ ├── CategoryBackedEnum.php │ │ │ ├── CompiledRouteCollectionTest.php │ │ │ ├── FallbackRouteTest.php │ │ │ ├── Fixtures/ │ │ │ │ ├── ApiResourceTaskController.php │ │ │ │ ├── ApiResourceTestController.php │ │ │ │ ├── CreatableSingletonTestController.php │ │ │ │ ├── NestedSingletonTestController.php │ │ │ │ ├── SingletonTestController.php │ │ │ │ ├── app.php │ │ │ │ ├── bootstrap/ │ │ │ │ │ └── cache/ │ │ │ │ │ └── .gitignore │ │ │ │ ├── cache/ │ │ │ │ │ └── .gitignore │ │ │ │ ├── redirect_routes.php │ │ │ │ ├── view.blade.php │ │ │ │ └── wildcard_catch_all_routes.php │ │ │ ├── FluentRoutingTest.php │ │ │ ├── HasMiddlewareTest.php │ │ │ ├── ImplicitBackedEnumRouteBindingTest.php │ │ │ ├── ImplicitModelRouteBindingTest.php │ │ │ ├── MiddlewareAttributeTest.php │ │ │ ├── PrecognitionTest.php │ │ │ ├── PreviousUrlTest.php │ │ │ ├── ResponsableTest.php │ │ │ ├── RouteApiResourceTest.php │ │ │ ├── RouteCachingTest.php │ │ │ ├── RouteCanBackedEnumTest.php │ │ │ ├── RouteNameEnum.php │ │ │ ├── RouteRedirectTest.php │ │ │ ├── RouteSingletonTest.php │ │ │ ├── RouteViewTest.php │ │ │ ├── RoutingServiceProviderTest.php │ │ │ ├── SerializableClosureV1CacheRouteTest.php │ │ │ ├── SimpleRouteTest.php │ │ │ ├── UrlSigningTest.php │ │ │ └── stubs/ │ │ │ └── serializable-closure-v1/ │ │ │ └── routes-v7.php │ │ ├── Session/ │ │ │ ├── CookieSessionHandlerTest.php │ │ │ ├── DatabaseSessionHandlerTest.php │ │ │ └── SessionPersistenceTest.php │ │ ├── Support/ │ │ │ ├── AuthFacadeTest.php │ │ │ ├── DeferredCallbackTest.php │ │ │ ├── ExceptionsFacadeTest.php │ │ │ ├── FacadesTest.php │ │ │ ├── Fixtures/ │ │ │ │ ├── MultipleInstanceManager.php │ │ │ │ └── NullableManager.php │ │ │ ├── ManagerTest.php │ │ │ ├── MultipleInstanceManagerTest.php │ │ │ ├── OnceHelperTest.php │ │ │ └── PluralizerPortugueseTest.php │ │ ├── Testing/ │ │ │ ├── ArtisanCommandTest.php │ │ │ ├── TestCaseTest.php │ │ │ └── TestWithoutDatabaseParallelTest.php │ │ ├── Translation/ │ │ │ ├── TranslatorTest.php │ │ │ └── lang/ │ │ │ ├── en/ │ │ │ │ └── app.php │ │ │ ├── en.json │ │ │ ├── fr/ │ │ │ │ └── app.php │ │ │ └── fr.json │ │ ├── Validation/ │ │ │ ├── RequestValidationTest.php │ │ │ ├── Rules/ │ │ │ │ ├── DateFormatValidationTest.php │ │ │ │ ├── EmailValidationTest.php │ │ │ │ ├── FileValidationTest.php │ │ │ │ └── PasswordValidationTest.php │ │ │ └── ValidatorTest.php │ │ └── View/ │ │ ├── BladeAnonymousComponentTest.php │ │ ├── BladeTest.php │ │ ├── RenderableViewExceptionTest.php │ │ ├── anonymous-components-1/ │ │ │ └── app.blade.php │ │ ├── anonymous-components-2/ │ │ │ ├── buttons/ │ │ │ │ └── danger.blade.php │ │ │ └── panel.blade.php │ │ ├── anonymous-components-templates/ │ │ │ └── page.blade.php │ │ └── templates/ │ │ ├── components/ │ │ │ ├── appendable-panel.blade.php │ │ │ ├── base-input.blade.php │ │ │ ├── child-input.blade.php │ │ │ ├── hello-span.blade.php │ │ │ ├── input-with-slot.blade.php │ │ │ ├── link.blade.php │ │ │ ├── menu-item.blade.php │ │ │ ├── menu.blade.php │ │ │ └── panel.blade.php │ │ ├── consume.blade.php │ │ ├── different-extension.sh │ │ ├── hello.blade.php │ │ ├── partials/ │ │ │ └── scoped-partial.blade.php │ │ ├── renderable-exception.blade.php │ │ ├── uses-appendable-panel.blade.php │ │ ├── uses-child-input.blade.php │ │ ├── uses-include-regular.blade.php │ │ ├── uses-include-scoped.blade.php │ │ ├── uses-link.blade.php │ │ ├── uses-panel-dynamically.blade.php │ │ ├── uses-panel.blade.php │ │ └── varied-dynamic-calls.blade.php │ ├── JsonSchema/ │ │ ├── ArrayTypeTest.php │ │ ├── BooleanTypeTest.php │ │ ├── Fixtures/ │ │ │ └── Enums/ │ │ │ ├── IntBackedEnum.php │ │ │ ├── StringBackedEnum.php │ │ │ └── UnitEnum.php │ │ ├── IntegerTypeTest.php │ │ ├── NumberTypeTest.php │ │ ├── ObjectTypeTest.php │ │ ├── SerializerTest.php │ │ ├── StringTypeTest.php │ │ └── TypeTest.php │ ├── Log/ │ │ ├── ContextTest.php │ │ ├── LogLoggerTest.php │ │ └── LogManagerTest.php │ ├── Mail/ │ │ ├── AttachableTest.php │ │ ├── MailFailoverTransportTest.php │ │ ├── MailLogTransportTest.php │ │ ├── MailMailableAssertionsTest.php │ │ ├── MailMailableDataTest.php │ │ ├── MailMailableHeadersTest.php │ │ ├── MailMailableTest.php │ │ ├── MailMailerTest.php │ │ ├── MailManagerTest.php │ │ ├── MailMessageTest.php │ │ ├── MailRoundRobinTransportTest.php │ │ ├── MailSesTransportTest.php │ │ ├── MailSesV2TransportTest.php │ │ ├── MailableAlternativeSyntaxTest.php │ │ └── MailableQueuedTest.php │ ├── Notifications/ │ │ ├── NotificationActionTest.php │ │ ├── NotificationBroadcastChannelTest.php │ │ ├── NotificationChannelManagerTest.php │ │ ├── NotificationDatabaseChannelTest.php │ │ ├── NotificationMailMessageTest.php │ │ ├── NotificationMessageTest.php │ │ ├── NotificationRoutesNotificationsTest.php │ │ ├── NotificationSendQueuedNotificationTest.php │ │ └── NotificationSenderTest.php │ ├── Pagination/ │ │ ├── CursorPaginatorLoadMorphCountTest.php │ │ ├── CursorPaginatorLoadMorphTest.php │ │ ├── CursorPaginatorTest.php │ │ ├── CursorResourceTest.php │ │ ├── CursorTest.php │ │ ├── Fixtures/ │ │ │ └── Models/ │ │ │ ├── CursorResourceTestModel.php │ │ │ └── PaginatorResourceTestModel.php │ │ ├── LengthAwarePaginatorTest.php │ │ ├── PaginatorLoadMorphCountTest.php │ │ ├── PaginatorLoadMorphTest.php │ │ ├── PaginatorResourceTest.php │ │ ├── PaginatorTest.php │ │ └── UrlWindowTest.php │ ├── Pipeline/ │ │ ├── PipelineTest.php │ │ └── PipelineTransactionTest.php │ ├── Process/ │ │ └── ProcessTest.php │ ├── Queue/ │ │ ├── BeforeCommitContractTest.php │ │ ├── DatabaseFailedJobProviderTest.php │ │ ├── DatabaseUuidFailedJobProviderTest.php │ │ ├── DynamoDbFailedJobProviderTest.php │ │ ├── FailOnExceptionMiddlewareTest.php │ │ ├── FailoverQueueTest.php │ │ ├── FileFailedJobProviderTest.php │ │ ├── Fixtures/ │ │ │ ├── FakeSqsJob.php │ │ │ ├── FakeSqsJobWithDeduplication.php │ │ │ └── FakeSqsJobWithMessageGroup.php │ │ ├── InteractsWithQueueTest.php │ │ ├── PruneBatchesCommandTest.php │ │ ├── QueueBeanstalkdJobTest.php │ │ ├── QueueBeanstalkdQueueTest.php │ │ ├── QueueDatabaseQueueIntegrationTest.php │ │ ├── QueueDatabaseQueueUnitTest.php │ │ ├── QueueDelayTest.php │ │ ├── QueueExceptionTest.php │ │ ├── QueueListenerTest.php │ │ ├── QueueManagerTest.php │ │ ├── QueuePauseResumeTest.php │ │ ├── QueueRedisJobTest.php │ │ ├── QueueRedisQueueTest.php │ │ ├── QueueRoutesTest.php │ │ ├── QueueSizeTest.php │ │ ├── QueueSqsJobTest.php │ │ ├── QueueSqsQueueTest.php │ │ ├── QueueSyncQueueTest.php │ │ └── QueueWorkerTest.php │ ├── Redis/ │ │ ├── ConcurrentLimiterTest.php │ │ ├── Connections/ │ │ │ └── PhpRedisClusterConnectionTest.php │ │ ├── DurationLimiterTest.php │ │ ├── RedisConnectionTest.php │ │ ├── RedisConnectorTest.php │ │ ├── RedisEventsTest.php │ │ └── RedisManagerExtensionTest.php │ ├── Routing/ │ │ ├── Enums.php │ │ ├── ImplicitRouteBindingTest.php │ │ ├── RouteActionTest.php │ │ ├── RouteBindingTest.php │ │ ├── RouteCollectionTest.php │ │ ├── RouteRegistrarTest.php │ │ ├── RouteSignatureParametersTest.php │ │ ├── RouteUriTest.php │ │ ├── RoutingRedirectorTest.php │ │ ├── RoutingRouteTest.php │ │ ├── RoutingSortedMiddlewareTest.php │ │ ├── RoutingUrlGeneratorTest.php │ │ └── fixtures/ │ │ ├── controller.php │ │ ├── except_controller.php │ │ ├── only_controller.php │ │ └── routes.php │ ├── Session/ │ │ ├── ArraySessionHandlerTest.php │ │ ├── CacheBasedSessionHandlerTest.php │ │ ├── EncryptedSessionStoreTest.php │ │ ├── FileSessionHandlerTest.php │ │ ├── Middleware/ │ │ │ └── AuthenticateSessionTest.php │ │ └── SessionStoreTest.php │ ├── Support/ │ │ ├── Common.php │ │ ├── Concerns/ │ │ │ └── CountsEnumerations.php │ │ ├── ConfigurationUrlParserTest.php │ │ ├── DateFacadeTest.php │ │ ├── Enums.php │ │ ├── Fixtures/ │ │ │ ├── ClassesWithAttributes.php │ │ │ ├── CustomDateClass.php │ │ │ ├── IntBackedEnum.php │ │ │ ├── StringBackedEnum.php │ │ │ ├── StringableObjectStub.php │ │ │ └── UnionTypesClosure.php │ │ ├── ForwardsCallsTest.php │ │ ├── HigherOrderProxyTest.php │ │ ├── LotteryTest.php │ │ ├── OnceTest.php │ │ ├── SleepTest.php │ │ ├── StorageFacadeTest.php │ │ ├── SupportArrTest.php │ │ ├── SupportBenchmarkTest.php │ │ ├── SupportBinaryCodecTest.php │ │ ├── SupportCapsuleManagerTraitTest.php │ │ ├── SupportCarbonTest.php │ │ ├── SupportCollectionTest.php │ │ ├── SupportComposerTest.php │ │ ├── SupportConditionableTest.php │ │ ├── SupportEnumValueFunctionTest.php │ │ ├── SupportFacadeTest.php │ │ ├── SupportFacadesEventTest.php │ │ ├── SupportFacadesHttpTest.php │ │ ├── SupportFacadesQueueTest.php │ │ ├── SupportFluentTest.php │ │ ├── SupportHelpersTest.php │ │ ├── SupportHtmlStringTest.php │ │ ├── SupportJsTest.php │ │ ├── SupportLazyCollectionIsLazyTest.php │ │ ├── SupportLazyCollectionTest.php │ │ ├── SupportMacroableTest.php │ │ ├── SupportMailTest.php │ │ ├── SupportMaintenanceModeTest.php │ │ ├── SupportMessageBagTest.php │ │ ├── SupportNamespacedItemResolverTest.php │ │ ├── SupportNumberTest.php │ │ ├── SupportOptionalTest.php │ │ ├── SupportPluralizerTest.php │ │ ├── SupportReflectorTest.php │ │ ├── SupportReflectsClosuresTest.php │ │ ├── SupportServiceProviderTest.php │ │ ├── SupportStrTest.php │ │ ├── SupportStringableTest.php │ │ ├── SupportTappableTest.php │ │ ├── SupportTestingBusFakeTest.php │ │ ├── SupportTestingEventFakeTest.php │ │ ├── SupportTestingMailFakeTest.php │ │ ├── SupportTestingNotificationFakeTest.php │ │ ├── SupportTestingQueueFakeTest.php │ │ ├── SupportTimeboxTest.php │ │ ├── SupportUriTest.php │ │ ├── SupportViewErrorBagTest.php │ │ └── ValidatedInputTest.php │ ├── Testing/ │ │ ├── AssertRedirectToActionTest.php │ │ ├── AssertRedirectToRouteTest.php │ │ ├── AssertRedirectToSignedRouteTest.php │ │ ├── AssertTest.php │ │ ├── Concerns/ │ │ │ ├── InteractsWithDatabaseTest.php │ │ │ ├── InteractsWithDeprecationHandlingTest.php │ │ │ ├── TestCachesTest.php │ │ │ ├── TestDatabasesTest.php │ │ │ └── TestViewsTest.php │ │ ├── Console/ │ │ │ ├── ConfigShowCommandTest.php │ │ │ └── RouteListCommandTest.php │ │ ├── Fixtures/ │ │ │ └── file.json │ │ ├── Fluent/ │ │ │ ├── AssertTest.php │ │ │ └── BackedEnum.php │ │ ├── ParallelConsoleOutputTest.php │ │ ├── ParallelTestingTest.php │ │ ├── Stubs/ │ │ │ └── ArrayableStubObject.php │ │ └── TestResponseTest.php │ ├── Translation/ │ │ ├── Fixtures/ │ │ │ └── Enums/ │ │ │ ├── Bar.php │ │ │ ├── Baz.php │ │ │ └── Foo.php │ │ ├── TranslationFileLoaderTest.php │ │ ├── TranslationMessageSelectorTest.php │ │ └── TranslationTranslatorTest.php │ ├── Validation/ │ │ ├── Enums.php │ │ ├── ValidationAddFailureTest.php │ │ ├── ValidationAnyOfRuleTest.php │ │ ├── ValidationArrayRuleTest.php │ │ ├── ValidationDatabasePresenceVerifierTest.php │ │ ├── ValidationDateRuleTest.php │ │ ├── ValidationDimensionsRuleTest.php │ │ ├── ValidationEmailRuleTest.php │ │ ├── ValidationEnumRuleTest.php │ │ ├── ValidationExceptionTest.php │ │ ├── ValidationExcludeIfTest.php │ │ ├── ValidationExcludeUnlessRuleTest.php │ │ ├── ValidationExistsRuleTest.php │ │ ├── ValidationFactoryTest.php │ │ ├── ValidationFileRuleTest.php │ │ ├── ValidationForEachTest.php │ │ ├── ValidationImageFileRuleTest.php │ │ ├── ValidationInArrayKeysTest.php │ │ ├── ValidationInRuleTest.php │ │ ├── ValidationInvokableRuleTest.php │ │ ├── ValidationMacroTest.php │ │ ├── ValidationNotInRuleTest.php │ │ ├── ValidationNotPwnedVerifierTest.php │ │ ├── ValidationNumericRuleTest.php │ │ ├── ValidationPasswordRuleTest.php │ │ ├── ValidationProhibitedIfTest.php │ │ ├── ValidationProhibitedUnlessRuleTest.php │ │ ├── ValidationRequiredIfTest.php │ │ ├── ValidationRequiredUnlessRuleTest.php │ │ ├── ValidationRuleCanTest.php │ │ ├── ValidationRuleContainsTest.php │ │ ├── ValidationRuleDoesntContainTest.php │ │ ├── ValidationRuleParserTest.php │ │ ├── ValidationStringRuleTest.php │ │ ├── ValidationUniqueRuleTest.php │ │ ├── ValidationValidatorTest.php │ │ ├── ValidatorAfterRuleTest.php │ │ └── fixtures/ │ │ └── Values.php │ └── View/ │ ├── Blade/ │ │ ├── AbstractBladeTestCase.php │ │ ├── BladeAppendTest.php │ │ ├── BladeBoolTest.php │ │ ├── BladeBreakStatementsTest.php │ │ ├── BladeCanStatementsTest.php │ │ ├── BladeCananyStatementsTest.php │ │ ├── BladeCannotStatementsTest.php │ │ ├── BladeCheckedStatementsTest.php │ │ ├── BladeClassTest.php │ │ ├── BladeCommentsTest.php │ │ ├── BladeComponentFirstTest.php │ │ ├── BladeComponentTagCompilerTest.php │ │ ├── BladeComponentsTest.php │ │ ├── BladeContextTest.php │ │ ├── BladeContinueStatementsTest.php │ │ ├── BladeCustomTest.php │ │ ├── BladeEchoHandlerTest.php │ │ ├── BladeEchoTest.php │ │ ├── BladeElseAuthStatementsTest.php │ │ ├── BladeElseGuestStatementsTest.php │ │ ├── BladeElseIfStatementsTest.php │ │ ├── BladeElseStatementsTest.php │ │ ├── BladeEndSectionsTest.php │ │ ├── BladeEnvironmentStatementsTest.php │ │ ├── BladeErrorTest.php │ │ ├── BladeEscapedTest.php │ │ ├── BladeExpressionTest.php │ │ ├── BladeExtendsTest.php │ │ ├── BladeForStatementsTest.php │ │ ├── BladeForeachStatementsTest.php │ │ ├── BladeForelseStatementsTest.php │ │ ├── BladeFragmentTest.php │ │ ├── BladeHasSectionTest.php │ │ ├── BladeHasStackTest.php │ │ ├── BladeHelpersTest.php │ │ ├── BladeIfAuthStatementsTest.php │ │ ├── BladeIfEmptyStatementsTest.php │ │ ├── BladeIfGuestStatementsTest.php │ │ ├── BladeIfIssetStatementsTest.php │ │ ├── BladeIfStatementsTest.php │ │ ├── BladeIncludesTest.php │ │ ├── BladeInjectTest.php │ │ ├── BladeJsTest.php │ │ ├── BladeJsonTest.php │ │ ├── BladeLangTest.php │ │ ├── BladeOverwriteSectionTest.php │ │ ├── BladePhpStatementsTest.php │ │ ├── BladePrependTest.php │ │ ├── BladePropsTest.php │ │ ├── BladePushTest.php │ │ ├── BladeSectionMissingTest.php │ │ ├── BladeSectionTest.php │ │ ├── BladeSessionTest.php │ │ ├── BladeShowTest.php │ │ ├── BladeStackTest.php │ │ ├── BladeStopSectionTest.php │ │ ├── BladeStyleTest.php │ │ ├── BladeUnlessStatementsTest.php │ │ ├── BladeUnsetStatementsTest.php │ │ ├── BladeUseTest.php │ │ ├── BladeVerbatimTest.php │ │ ├── BladeWhileStatementsTest.php │ │ └── BladeYieldTest.php │ ├── ClearCommandTest.php │ ├── ComponentTest.php │ ├── Concerns/ │ │ └── ManagesStacksTest.php │ ├── ViewBladeCompilerTest.php │ ├── ViewCompilerEngineTest.php │ ├── ViewComponentAttributeBagTest.php │ ├── ViewComponentTest.php │ ├── ViewEngineResolverTest.php │ ├── ViewFactoryTest.php │ ├── ViewFileViewFinderTest.php │ ├── ViewPhpEngineTest.php │ ├── ViewTest.php │ └── fixtures/ │ ├── basic.php │ ├── component.php │ ├── http-exception.php │ ├── namespaced/ │ │ └── basic.php │ ├── nested/ │ │ ├── basic.php │ │ └── child.php │ ├── regular-exception.php │ ├── section-exception-layout.php │ └── section-exception.php └── types/ ├── Autoload.php ├── Cache/ │ └── Repository.php ├── Collections/ │ └── helpers.php ├── Container/ │ └── Container.php ├── Contracts/ │ ├── Cache/ │ │ └── Repository.php │ ├── Container/ │ │ └── Container.php │ ├── Foundation/ │ │ └── Application.php │ └── Validation/ │ └── ValidationRule.php ├── Database/ │ ├── Eloquent/ │ │ ├── Builder.php │ │ ├── Casts/ │ │ │ ├── Castable.php │ │ │ └── CastsAttributes.php │ │ ├── Collection.php │ │ ├── Factories/ │ │ │ └── Factory.php │ │ ├── Model.php │ │ ├── ModelNotFoundException.php │ │ └── Relations.php │ └── Query/ │ └── Builder.php ├── Foundation/ │ ├── AboutCommand.php │ ├── Application.php │ ├── Configuration/ │ │ ├── Exceptions.php │ │ └── Middleware.php │ ├── Helpers.php │ └── Testing/ │ ├── InteractsWithTime.php │ └── Wormhole.php ├── Http/ │ ├── Client/ │ │ ├── PendingRequest.php │ │ └── Response.php │ └── Request.php ├── Log/ │ └── Context.php ├── Managers/ │ ├── CacheManager.php │ ├── ConcurrencyManager.php │ ├── LogManager.php │ └── RedisManager.php ├── Notifications/ │ └── DatabaseNotificationCollection.php ├── Pagination/ │ └── Paginator.php ├── Queue/ │ └── Events/ │ ├── JobQueued.php │ └── JobQueueing.php ├── Routing/ │ └── Route.php ├── Support/ │ ├── Arr.php │ ├── Collection.php │ ├── Facades/ │ │ └── Cache.php │ ├── Fluent.php │ ├── Helpers.php │ ├── LazyCollection.php │ ├── Str.php │ ├── Stringable.php │ └── Timebox.php └── Testing/ └── TestResponse.php