├── src └── Illuminate │ ├── Mail │ ├── resources │ │ └── views │ │ │ ├── text │ │ │ ├── footer.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── table.blade.php │ │ │ ├── subcopy.blade.php │ │ │ ├── button.blade.php │ │ │ ├── header.blade.php │ │ │ └── layout.blade.php │ │ │ └── html │ │ │ ├── table.blade.php │ │ │ ├── subcopy.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── message.blade.php │ │ │ └── button.blade.php │ ├── Mailables │ │ ├── Attachment.php │ │ └── Address.php │ └── Events │ │ └── MessageSending.php │ ├── Foundation │ ├── Console │ │ └── stubs │ │ │ ├── view.stub │ │ │ ├── routes.stub │ │ │ ├── enum.stub │ │ │ ├── pest.unit.stub │ │ │ ├── trait.stub │ │ │ ├── interface.stub │ │ │ ├── observer.plain.stub │ │ │ ├── enum.backed.stub │ │ │ ├── pest.stub │ │ │ ├── exception.stub │ │ │ ├── model.pivot.stub │ │ │ ├── view.pest.stub │ │ │ ├── model.morph-pivot.stub │ │ │ ├── broadcasting-routes.stub │ │ │ ├── model.stub │ │ │ ├── api-routes.stub │ │ │ ├── class.stub │ │ │ ├── markdown.stub │ │ │ ├── echo-bootstrap-js.stub │ │ │ ├── exception-report.stub │ │ │ ├── policy.plain.stub │ │ │ ├── test.unit.stub │ │ │ ├── echo-js-ably.stub │ │ │ ├── job.middleware.stub │ │ │ ├── class.invokable.stub │ │ │ ├── exception-render.stub │ │ │ ├── view.test.stub │ │ │ ├── provider.stub │ │ │ ├── scope.stub │ │ │ ├── job.stub │ │ │ ├── resource.stub │ │ │ ├── test.stub │ │ │ ├── channel.stub │ │ │ ├── listener.stub │ │ │ ├── resource-collection.stub │ │ │ ├── rule.stub │ │ │ ├── echo-js-pusher.stub │ │ │ ├── echo-js-reverb.stub │ │ │ ├── job.queued.stub │ │ │ ├── listener.typed.stub │ │ │ ├── cast.inbound.stub │ │ │ ├── exception-render-report.stub │ │ │ ├── listener.queued.stub │ │ │ ├── view-component.stub │ │ │ ├── listener.typed.queued.stub │ │ │ ├── console.stub │ │ │ ├── rule.implicit.stub │ │ │ └── request.stub │ ├── resources │ │ └── exceptions │ │ │ └── renderer │ │ │ ├── light-mode.css │ │ │ ├── dark-mode.css │ │ │ ├── postcss.config.js │ │ │ ├── components │ │ │ ├── card.blade.php │ │ │ ├── icons │ │ │ │ ├── chevron-up.blade.php │ │ │ │ ├── chevron-down.blade.php │ │ │ │ ├── moon.blade.php │ │ │ │ ├── sun.blade.php │ │ │ │ └── computer-desktop.blade.php │ │ │ └── trace-and-editor.blade.php │ │ │ ├── tailwind.config.js │ │ │ ├── vite.config.js │ │ │ ├── package.json │ │ │ ├── show.blade.php │ │ │ └── scripts.js │ ├── Events │ │ ├── Terminating.php │ │ ├── DiagnosingHealth.php │ │ ├── MaintenanceModeDisabled.php │ │ ├── MaintenanceModeEnabled.php │ │ ├── LocaleUpdated.php │ │ └── VendorTagPublished.php │ ├── Exceptions │ │ ├── views │ │ │ ├── 404.blade.php │ │ │ ├── 401.blade.php │ │ │ ├── 419.blade.php │ │ │ ├── 500.blade.php │ │ │ ├── 402.blade.php │ │ │ ├── 429.blade.php │ │ │ ├── 503.blade.php │ │ │ └── 403.blade.php │ │ └── RegisterErrorViewPaths.php │ ├── ViteException.php │ ├── MixFileNotFoundException.php │ ├── Testing │ │ ├── Concerns │ │ │ └── WithoutExceptionHandlingHandler.php │ │ ├── WithConsoleEvents.php │ │ ├── WithoutMiddleware.php │ │ └── RefreshDatabaseState.php │ ├── MixManifestNotFoundException.php │ ├── Http │ │ └── Middleware │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── ValidateCsrfToken.php │ │ │ └── ValidatePostSize.php │ ├── ViteManifestNotFoundException.php │ ├── Queue │ │ └── Queueable.php │ ├── stubs │ │ └── facade.stub │ ├── Bootstrap │ │ └── BootProviders.php │ ├── Bus │ │ ├── PendingClosureDispatch.php │ │ └── DispatchesJobs.php │ ├── Providers │ │ └── ConsoleSupportServiceProvider.php │ ├── Precognition.php │ └── Routing │ │ └── PrecognitionCallableDispatcher.php │ ├── Contracts │ ├── Queue │ │ ├── ShouldQueue.php │ │ ├── ShouldBeUnique.php │ │ ├── ShouldBeEncrypted.php │ │ ├── ShouldQueueAfterCommit.php │ │ ├── ShouldBeUniqueUntilProcessing.php │ │ ├── ClearableQueue.php │ │ ├── Factory.php │ │ ├── EntityResolver.php │ │ ├── EntityNotFoundException.php │ │ └── QueueableEntity.php │ ├── Console │ │ ├── Isolatable.php │ │ ├── PromptsForMissingInput.php │ │ └── Application.php │ ├── Debug │ │ └── ShouldntReport.php │ ├── Broadcasting │ │ ├── ShouldBeUnique.php │ │ ├── ShouldBroadcastNow.php │ │ ├── Factory.php │ │ ├── ShouldBroadcast.php │ │ └── HasBroadcastChannel.php │ ├── Container │ │ ├── ContextualAttribute.php │ │ ├── BindingResolutionException.php │ │ └── CircularDependencyException.php │ ├── Database │ │ ├── Events │ │ │ └── MigrationEvent.php │ │ ├── Query │ │ │ ├── ConditionExpression.php │ │ │ ├── Builder.php │ │ │ └── Expression.php │ │ └── Eloquent │ │ │ ├── Builder.php │ │ │ ├── Castable.php │ │ │ ├── CastsInboundAttributes.php │ │ │ └── SerializesCastableAttributes.php │ ├── Events │ │ ├── ShouldDispatchAfterCommit.php │ │ └── ShouldHandleEventsAfterCommit.php │ ├── Auth │ │ ├── Middleware │ │ │ └── AuthenticatesRequests.php │ │ ├── PasswordBrokerFactory.php │ │ ├── Access │ │ │ └── Authorizable.php │ │ ├── CanResetPassword.php │ │ ├── Factory.php │ │ └── SupportsBasicAuth.php │ ├── Session │ │ └── Middleware │ │ │ └── AuthenticatesSessions.php │ ├── Cache │ │ ├── LockTimeoutException.php │ │ ├── Factory.php │ │ └── LockProvider.php │ ├── Redis │ │ ├── LimiterTimeoutException.php │ │ ├── Factory.php │ │ └── Connector.php │ ├── View │ │ ├── ViewCompilationException.php │ │ ├── Engine.php │ │ └── View.php │ ├── Filesystem │ │ ├── FileNotFoundException.php │ │ ├── LockTimeoutException.php │ │ ├── Cloud.php │ │ └── Factory.php │ ├── Encryption │ │ ├── DecryptException.php │ │ ├── EncryptException.php │ │ └── StringEncrypter.php │ ├── Log │ │ └── ContextLogProcessor.php │ ├── Validation │ │ ├── ImplicitRule.php │ │ ├── ValidatesWhenResolved.php │ │ ├── DataAwareRule.php │ │ ├── UncompromisedVerifier.php │ │ ├── ValidatorAwareRule.php │ │ ├── CompilableRules.php │ │ ├── ValidationRule.php │ │ ├── Rule.php │ │ └── InvokableRule.php │ ├── Support │ │ ├── ValidatedData.php │ │ ├── Htmlable.php │ │ ├── Renderable.php │ │ ├── DeferrableProvider.php │ │ ├── Jsonable.php │ │ ├── MessageProvider.php │ │ ├── Arrayable.php │ │ ├── DeferringDisplayableValue.php │ │ ├── Responsable.php │ │ └── CanBeEscapedWhenCastToString.php │ ├── Mail │ │ ├── Attachable.php │ │ └── Factory.php │ ├── Translation │ │ └── HasLocalePreference.php │ ├── Foundation │ │ ├── ExceptionRenderer.php │ │ ├── CachesRoutes.php │ │ └── CachesConfiguration.php │ ├── Pipeline │ │ └── Hub.php │ ├── Concurrency │ │ └── Driver.php │ └── Routing │ │ └── BindingRegistrar.php │ ├── Support │ ├── Testing │ │ └── Fakes │ │ │ └── Fake.php │ ├── Exceptions │ │ └── MathException.php │ └── Traits │ │ ├── Tappable.php │ │ └── Dumpable.php │ ├── Cache │ ├── Events │ │ ├── CacheMissed.php │ │ ├── KeyForgotten.php │ │ ├── ForgettingKey.php │ │ ├── RetrievingKey.php │ │ ├── KeyForgetFailed.php │ │ ├── RetrievingManyKeys.php │ │ └── CacheHit.php │ ├── RateLimiting │ │ ├── Unlimited.php │ │ └── GlobalLimit.php │ ├── FileLock.php │ └── TaggableStore.php │ ├── Database │ ├── Events │ │ ├── MigrationEnded.php │ │ ├── MigrationStarted.php │ │ ├── MigrationsEnded.php │ │ ├── MigrationsStarted.php │ │ ├── ConnectionEstablished.php │ │ ├── TransactionBeginning.php │ │ ├── TransactionCommitted.php │ │ ├── TransactionCommitting.php │ │ ├── TransactionRolledBack.php │ │ ├── ModelPruningFinished.php │ │ ├── ModelPruningStarting.php │ │ ├── ModelsPruned.php │ │ ├── NoPendingMigrations.php │ │ ├── DatabaseBusy.php │ │ ├── StatementPrepared.php │ │ ├── DatabaseRefreshed.php │ │ ├── MigrationsEvent.php │ │ └── ConnectionEvent.php │ ├── Query │ │ ├── JoinLateralClause.php │ │ ├── Processors │ │ │ └── MariaDbProcessor.php │ │ └── IndexHint.php │ ├── Schema │ │ └── MariaDbBuilder.php │ ├── UniqueConstraintViolationException.php │ ├── DeadlockException.php │ ├── LostConnectionException.php │ ├── RecordNotFoundException.php │ ├── RecordsNotFoundException.php │ ├── Eloquent │ │ ├── MassAssignmentException.php │ │ ├── Attributes │ │ │ ├── Scope.php │ │ │ ├── ScopedBy.php │ │ │ ├── ObservedBy.php │ │ │ ├── UseFactory.php │ │ │ └── CollectedBy.php │ │ ├── Scope.php │ │ ├── Concerns │ │ │ ├── HasVersion4Uuids.php │ │ │ ├── HasUuids.php │ │ │ └── HasUlids.php │ │ ├── BroadcastsEventsAfterCommit.php │ │ ├── Relations │ │ │ └── Pivot.php │ │ ├── Factories │ │ │ └── CrossJoinSequence.php │ │ └── MissingAttributeException.php │ ├── MultipleColumnsSelectedException.php │ ├── Migrations │ │ ├── MigrationResult.php │ │ └── stubs │ │ │ ├── migration.stub │ │ │ ├── migration.create.stub │ │ │ └── migration.update.stub │ ├── ConfigurationUrlParser.php │ ├── Connectors │ │ └── ConnectorInterface.php │ ├── Console │ │ ├── Seeds │ │ │ ├── stubs │ │ │ │ └── seeder.stub │ │ │ └── WithoutModelEvents.php │ │ └── Factories │ │ │ └── stubs │ │ │ └── factory.stub │ ├── Concerns │ │ ├── ExplainsQueries.php │ │ └── ParsesSearchPath.php │ ├── ClassMorphViolationException.php │ ├── SQLiteDatabaseDoesNotExistException.php │ └── ConnectionResolverInterface.php │ ├── Http │ ├── Client │ │ ├── ConnectionException.php │ │ ├── HttpClientException.php │ │ ├── StrayRequestException.php │ │ └── Events │ │ │ └── RequestSending.php │ ├── File.php │ ├── Resources │ │ ├── PotentiallyMissing.php │ │ └── MissingValue.php │ ├── Exceptions │ │ ├── MalformedUrlException.php │ │ ├── PostTooLargeException.php │ │ └── ThrottleRequestsException.php │ ├── StreamedEvent.php │ └── Middleware │ │ ├── FrameGuard.php │ │ └── CheckResponseForModifications.php │ ├── Notifications │ ├── Notifiable.php │ ├── Messages │ │ └── DatabaseMessage.php │ ├── Action.php │ └── Events │ │ └── NotificationSending.php │ ├── Console │ ├── resources │ │ └── views │ │ │ └── components │ │ │ ├── alert.php │ │ │ ├── bullet-list.php │ │ │ ├── line.php │ │ │ └── two-column-detail.php │ ├── PromptValidationException.php │ ├── ManuallyFailedException.php │ ├── View │ │ ├── TaskResult.php │ │ └── Components │ │ │ ├── Mutators │ │ │ ├── EnsureDynamicContentIsHighlighted.php │ │ │ ├── EnsureRelativePaths.php │ │ │ ├── EnsurePunctuation.php │ │ │ └── EnsureNoPunctuation.php │ │ │ ├── Confirm.php │ │ │ ├── Info.php │ │ │ ├── Error.php │ │ │ ├── Success.php │ │ │ ├── Warn.php │ │ │ ├── Secret.php │ │ │ └── Ask.php │ ├── Scheduling │ │ └── CacheAware.php │ ├── Events │ │ ├── ArtisanStarting.php │ │ ├── ScheduledTaskSkipped.php │ │ ├── ScheduledTaskStarting.php │ │ ├── ScheduledBackgroundTaskFinished.php │ │ ├── ScheduledTaskFinished.php │ │ └── ScheduledTaskFailed.php │ └── Contracts │ │ └── NewLineAware.php │ ├── Session │ ├── TokenMismatchException.php │ └── ExistenceAwareInterface.php │ ├── Collections │ └── ItemNotFoundException.php │ ├── Broadcasting │ ├── BroadcastException.php │ ├── PresenceChannel.php │ ├── EncryptedPrivateChannel.php │ ├── PrivateChannel.php │ └── Broadcasters │ │ └── NullBroadcaster.php │ ├── Queue │ ├── ManuallyFailedException.php │ ├── Attributes │ │ ├── DeleteWhenMissingModels.php │ │ └── WithoutRelations.php │ ├── Connectors │ │ ├── ConnectorInterface.php │ │ ├── NullConnector.php │ │ └── SyncConnector.php │ ├── Events │ │ ├── JobPopping.php │ │ ├── Looping.php │ │ ├── JobPopped.php │ │ ├── JobProcessed.php │ │ ├── JobTimedOut.php │ │ ├── JobProcessing.php │ │ ├── WorkerStopping.php │ │ ├── JobReleasedAfterException.php │ │ ├── QueueBusy.php │ │ ├── JobFailed.php │ │ └── JobExceptionOccurred.php │ ├── Failed │ │ ├── CountableFailedJobProvider.php │ │ └── PrunableFailedJobProvider.php │ ├── Middleware │ │ └── SkipIfBatchCancelled.php │ ├── TimeoutExceededException.php │ ├── InvalidPayloadException.php │ └── MaxAttemptsExceededException.php │ ├── Validation │ ├── UnauthorizedException.php │ ├── DatabasePresenceVerifierInterface.php │ └── Rules │ │ └── Exists.php │ ├── Testing │ ├── LoggedExceptionCollection.php │ └── Fluent │ │ └── Concerns │ │ └── Debugging.php │ ├── Container │ ├── Attributes │ │ ├── DB.php │ │ └── CurrentUser.php │ └── EntryNotFoundException.php │ ├── Routing │ ├── RouteDependencyResolverTrait.php │ ├── Console │ │ └── stubs │ │ │ ├── controller.plain.stub │ │ │ ├── controller.invokable.stub │ │ │ └── middleware.stub │ ├── Events │ │ ├── Routing.php │ │ ├── RouteMatched.php │ │ ├── PreparingResponse.php │ │ └── ResponsePrepared.php │ ├── Controllers │ │ └── HasMiddleware.php │ ├── Exceptions │ │ ├── InvalidSignatureException.php │ │ └── BackedEnumCaseNotFoundException.php │ ├── Contracts │ │ └── CallableDispatcher.php │ ├── Matching │ │ ├── ValidatorInterface.php │ │ ├── MethodValidator.php │ │ ├── UriValidator.php │ │ ├── SchemeValidator.php │ │ └── HostValidator.php │ └── FiltersControllerMiddleware.php │ ├── Bus │ ├── Events │ │ └── BatchDispatched.php │ └── PrunableBatchRepository.php │ ├── Log │ ├── LogServiceProvider.php │ ├── functions.php │ └── Context │ │ └── Events │ │ ├── ContextHydrated.php │ │ └── ContextDehydrating.php │ ├── Auth │ ├── Events │ │ ├── PasswordReset.php │ │ ├── Verified.php │ │ ├── Registered.php │ │ ├── PasswordResetLinkSent.php │ │ ├── Lockout.php │ │ ├── Logout.php │ │ ├── Authenticated.php │ │ ├── CurrentDeviceLogout.php │ │ ├── Attempting.php │ │ ├── OtherDeviceLogout.php │ │ ├── Validated.php │ │ ├── Failed.php │ │ └── Login.php │ └── Listeners │ │ └── SendEmailVerificationNotification.php │ ├── Events │ └── functions.php │ ├── Encryption │ └── MissingAppKeyException.php │ ├── View │ ├── Engines │ │ └── Engine.php │ ├── Compilers │ │ ├── Concerns │ │ │ ├── CompilesComments.php │ │ │ ├── CompilesStyles.php │ │ │ ├── CompilesClasses.php │ │ │ ├── CompilesJs.php │ │ │ └── CompilesInjections.php │ │ └── CompilerInterface.php │ ├── ViewName.php │ └── AppendableAttributeValue.php │ ├── Translation │ └── lang │ │ └── en │ │ └── pagination.php │ ├── Cookie │ └── CookieServiceProvider.php │ ├── Redis │ └── Connections │ │ └── PredisClusterConnection.php │ └── Filesystem │ └── functions.php └── config └── concurrency.php /src/Illuminate/Mail/resources/views/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/resources/views/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/resources/views/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/resources/views/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/resources/views/text/button.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }}: {{ $url }} 2 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/resources/views/text/header.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }}: {{ $url }} 2 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/view.stub: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/light-mode.css: -------------------------------------------------------------------------------- 1 | @import 'highlight.js/styles/github.min.css'; 2 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/dark-mode.css: -------------------------------------------------------------------------------- 1 | @import 'highlight.js/styles/atom-one-dark.min.css'; 2 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/routes.stub: -------------------------------------------------------------------------------- 1 | setCompiledRoutes( 4 | {{routes}} 5 | ); 6 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/resources/views/html/table.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{ Illuminate\Mail\Markdown::parse($slot) }} 3 |
4 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/enum.stub: -------------------------------------------------------------------------------- 1 | toBeTrue(); 5 | }); 6 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/trait.stub: -------------------------------------------------------------------------------- 1 | get('/'); 5 | 6 | $response->assertStatus(200); 7 | }); 8 | -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/MigrationsStarted.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Database/Query/ConditionExpression.php: -------------------------------------------------------------------------------- 1 | getMessage() ?: 'Forbidden')) 6 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/MixManifestNotFoundException.php: -------------------------------------------------------------------------------- 1 | view('{{ name }}', [ 5 | // 6 | ]); 7 | 8 | $contents->assertSee(''); 9 | }); 10 | -------------------------------------------------------------------------------- /src/Illuminate/Http/File.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/broadcasting-routes.stub: -------------------------------------------------------------------------------- 1 | id === (int) $id; 7 | }); 8 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/model.stub: -------------------------------------------------------------------------------- 1 | user(); 8 | })->middleware('auth:sanctum'); 9 | -------------------------------------------------------------------------------- /src/Illuminate/Queue/Attributes/WithoutRelations.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | ⇂ 5 |
6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/Mailables/Attachment.php: -------------------------------------------------------------------------------- 1 | 2 | # Introduction 3 | 4 | The body of your message. 5 | 6 | 7 | Button Text 8 | 9 | 10 | Thanks,
11 | {{ config('app.name') }} 12 | 13 | -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Support/Htmlable.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/Illuminate/Console/Scheduling/CacheAware.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/resources/views/html/header.blade.php: -------------------------------------------------------------------------------- 1 | @props(['url']) 2 | 3 | 4 | 5 | @if (trim($slot) === 'Laravel') 6 | 7 | @else 8 | {!! $slot !!} 9 | @endif 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/Illuminate/Session/ExistenceAwareInterface.php: -------------------------------------------------------------------------------- 1 | store->add($this->name, $this->owner, $this->seconds); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Filesystem/Factory.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | public function toArray(); 17 | } 18 | -------------------------------------------------------------------------------- /src/Illuminate/Routing/Events/Routing.php: -------------------------------------------------------------------------------- 1 | "> 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/card.blade.php: -------------------------------------------------------------------------------- 1 |
merge(['class' => "@container flex flex-col p-6 sm:p-12 bg-white dark:bg-gray-900/80 text-gray-900 dark:text-gray-100 rounded-lg default:col-span-full default:lg:col-span-6 default:row-span-1 dark:ring-1 dark:ring-gray-800 shadow-xl"]) }} 3 | > 4 | {{ $slot }} 5 |
6 | -------------------------------------------------------------------------------- /src/Illuminate/Http/Resources/MissingValue.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Broadcasting/ShouldBroadcast.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | public static function middleware(); 13 | } 14 | -------------------------------------------------------------------------------- /src/Illuminate/Validation/DatabasePresenceVerifierInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/ModelPruningFinished.php: -------------------------------------------------------------------------------- 1 | $models The class names of the models that were pruned. 11 | */ 12 | public function __construct( 13 | public $models, 14 | ) { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/ModelPruningStarting.php: -------------------------------------------------------------------------------- 1 | $models The class names of the models that will be pruned. 11 | */ 12 | public function __construct( 13 | public $models 14 | ) { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/resources/views/html/panel.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Auth/Access/Authorizable.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/Illuminate/Http/Exceptions/MalformedUrlException.php: -------------------------------------------------------------------------------- 1 | app->singleton('log', fn ($app) => new LogManager($app)); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/Looping.php: -------------------------------------------------------------------------------- 1 | view('{{ name }}', [ 15 | // 16 | ]); 17 | 18 | $contents->assertSee(''); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/PasswordReset.php: -------------------------------------------------------------------------------- 1 | app[ConsoleKernel::class]->rerouteSymfonyCommandEvents(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/JobPopped.php: -------------------------------------------------------------------------------- 1 | locale = $locale; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Illuminate/Queue/Connectors/NullConnector.php: -------------------------------------------------------------------------------- 1 | boot(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/tailwind.config.js: -------------------------------------------------------------------------------- 1 | const defaultTheme = require('tailwindcss/defaultTheme'); 2 | 3 | /** @type {import('tailwindcss').Config} */ 4 | module.exports = { 5 | content: ['./**/*.blade.php'], 6 | darkMode: 'class', 7 | theme: { 8 | extend: { 9 | fontFamily: { 10 | sans: ['Figtree', ...defaultTheme.fontFamily.sans], 11 | }, 12 | }, 13 | }, 14 | plugins: [], 15 | }; 16 | -------------------------------------------------------------------------------- /src/Illuminate/Console/Events/ScheduledBackgroundTaskFinished.php: -------------------------------------------------------------------------------- 1 | $factoryClass 14 | */ 15 | public function __construct(public string $factoryClass) 16 | { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/DatabaseBusy.php: -------------------------------------------------------------------------------- 1 | |CastsAttributes|CastsInboundAttributes 12 | */ 13 | public static function castUsing(array $arguments); 14 | } 15 | -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Validation/CompilableRules.php: -------------------------------------------------------------------------------- 1 | > $collectionClass 14 | */ 15 | public function __construct(public string $collectionClass) 16 | { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/resource.stub: -------------------------------------------------------------------------------- 1 | 14 | */ 15 | public function toArray(Request $request): array 16 | { 17 | return parent::toArray($request); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/vite.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('vite').UserConfig} */ 2 | export default { 3 | plugins: [], 4 | build: { 5 | assetsDir: '', 6 | rollupOptions: { 7 | input: ['scripts.js', 'styles.css', 'dark-mode.css', 'light-mode.css'], 8 | output: { 9 | assetFileNames: '[name][extname]', 10 | entryFileNames: '[name].js', 11 | }, 12 | }, 13 | }, 14 | }; 15 | -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/WorkerStopping.php: -------------------------------------------------------------------------------- 1 | lastRendered; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/test.stub: -------------------------------------------------------------------------------- 1 | get('/'); 17 | 18 | $response->assertStatus(200); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/JobReleasedAfterException.php: -------------------------------------------------------------------------------- 1 | job->onFailure($callback); 18 | 19 | return $this; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Illuminate/Queue/Connectors/SyncConnector.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/Illuminate/Routing/Matching/ValidatorInterface.php: -------------------------------------------------------------------------------- 1 | [$1]', (string) $string); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/Illuminate/Database/Migrations/stubs/migration.stub: -------------------------------------------------------------------------------- 1 | batch()?->cancelled()) { 17 | return; 18 | } 19 | 20 | $next($job); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Illuminate/Routing/Events/ResponsePrepared.php: -------------------------------------------------------------------------------- 1 | 14 | */ 15 | public function toArray(Request $request): array 16 | { 17 | return parent::toArray($request); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/rule.stub: -------------------------------------------------------------------------------- 1 | data = $data; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Concurrency/Driver.php: -------------------------------------------------------------------------------- 1 | Model::withoutEvents($callback); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/icons/sun.blade.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/Illuminate/Http/StreamedEvent.php: -------------------------------------------------------------------------------- 1 | event = $event; 23 | $this->data = $data; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/Illuminate/View/Compilers/Concerns/CompilesComments.php: -------------------------------------------------------------------------------- 1 | contentTags[0], $this->contentTags[1]); 16 | 17 | return preg_replace($pattern, '', $value); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Lockout.php: -------------------------------------------------------------------------------- 1 | request = $request; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Auth/CanResetPassword.php: -------------------------------------------------------------------------------- 1 | context = $context; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Logout.php: -------------------------------------------------------------------------------- 1 | context = $context; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Illuminate/Queue/TimeoutExceededException.php: -------------------------------------------------------------------------------- 1 | resolveName().' has timed out.'), function ($e) use ($job) { 16 | $e->job = $job; 17 | }); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/echo-js-reverb.stub: -------------------------------------------------------------------------------- 1 | import Echo from 'laravel-echo'; 2 | 3 | import Pusher from 'pusher-js'; 4 | window.Pusher = Pusher; 5 | 6 | window.Echo = new Echo({ 7 | broadcaster: 'reverb', 8 | key: import.meta.env.VITE_REVERB_APP_KEY, 9 | wsHost: import.meta.env.VITE_REVERB_HOST, 10 | wsPort: import.meta.env.VITE_REVERB_PORT ?? 80, 11 | wssPort: import.meta.env.VITE_REVERB_PORT ?? 443, 12 | forceTLS: (import.meta.env.VITE_REVERB_SCHEME ?? 'https') === 'https', 13 | enabledTransports: ['ws', 'wss'], 14 | }); 15 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/job.queued.stub: -------------------------------------------------------------------------------- 1 | usingQuestionHelper( 17 | fn () => $this->output->confirm($question, $default), 18 | ); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "entry": "show.blade.php", 4 | "scripts": { 5 | "build": "vite build", 6 | "watch": "vite build --watch" 7 | }, 8 | "dependencies": { 9 | "alpinejs": "^3.13.10", 10 | "autoprefixer": "^10.4.19", 11 | "highlight.js": "^11.9.0", 12 | "postcss": "^8.4.38", 13 | "tailwindcss": "^3.4.3", 14 | "tippy.js": "^6.3.7", 15 | "vite": "^5.4.19", 16 | "vite-require": "^0.2.3" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/Illuminate/Console/Events/ScheduledTaskFinished.php: -------------------------------------------------------------------------------- 1 | $attributes 14 | */ 15 | public function set(Model $model, string $key, mixed $value, array $attributes): mixed 16 | { 17 | return $value; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/exception-render-report.stub: -------------------------------------------------------------------------------- 1 | \""; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/CurrentDeviceLogout.php: -------------------------------------------------------------------------------- 1 | \""; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Validation/Rule.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | class {{ factory }}Factory extends Factory 11 | { 12 | /** 13 | * Define the model's default state. 14 | * 15 | * @return array 16 | */ 17 | public function definition(): array 18 | { 19 | return [ 20 | // 21 | ]; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/JobFailed.php: -------------------------------------------------------------------------------- 1 | toHtml() ?>", 19 | Js::class, $this->stripParentheses($expression) 20 | ); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Attempting.php: -------------------------------------------------------------------------------- 1 | output))->render('info', $string, $verbosity); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Mutators/EnsureRelativePaths.php: -------------------------------------------------------------------------------- 1 | has('path.base')) { 16 | $string = str_replace(base_path().'/', '', $string); 17 | } 18 | 19 | return $string; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Illuminate/Http/Client/Events/RequestSending.php: -------------------------------------------------------------------------------- 1 | request = $request; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/PrivateChannel.php: -------------------------------------------------------------------------------- 1 | broadcastChannel() : $name; 17 | 18 | parent::__construct('private-'.$name); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Illuminate/Console/Events/ScheduledTaskFailed.php: -------------------------------------------------------------------------------- 1 | output))->render('error', $string, $verbosity); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Illuminate/Database/Concerns/ExplainsQueries.php: -------------------------------------------------------------------------------- 1 | toSql(); 17 | 18 | $bindings = $this->getBindings(); 19 | 20 | $explanation = $this->getConnection()->select('EXPLAIN '.$sql, $bindings); 21 | 22 | return new Collection($explanation); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/view-component.stub: -------------------------------------------------------------------------------- 1 | 2 |
8 |
9 | 10 | 11 |
12 |
13 | 14 | -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Success.php: -------------------------------------------------------------------------------- 1 | output))->render('success', $string, $verbosity); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Mutators/EnsurePunctuation.php: -------------------------------------------------------------------------------- 1 | endsWith(['.', '?', '!', ':'])) { 18 | return "$string."; 19 | } 20 | 21 | return $string; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/RegisterErrorViewPaths.php: -------------------------------------------------------------------------------- 1 | map(function ($path) { 18 | return "{$path}/errors"; 19 | })->push(__DIR__.'/views')->all()); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/icons/computer-desktop.blade.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Warn.php: -------------------------------------------------------------------------------- 1 | output)) 19 | ->render('warn', $string, $verbosity); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/Relations/Pivot.php: -------------------------------------------------------------------------------- 1 | |bool 23 | */ 24 | protected $guarded = []; 25 | } 26 | -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/Exists.php: -------------------------------------------------------------------------------- 1 | table, 21 | $this->column, 22 | $this->formatWheres() 23 | ), ','); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/listener.typed.queued.stub: -------------------------------------------------------------------------------- 1 | $attributes 16 | * @return mixed 17 | */ 18 | public function set(Model $model, string $key, mixed $value, array $attributes); 19 | } 20 | -------------------------------------------------------------------------------- /src/Illuminate/Notifications/Action.php: -------------------------------------------------------------------------------- 1 | url = $url; 30 | $this->text = $text; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/Illuminate/Routing/Matching/MethodValidator.php: -------------------------------------------------------------------------------- 1 | getMethod(), $route->methods()); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Failed.php: -------------------------------------------------------------------------------- 1 | endsWith(['.', '?', '!', ':'])) { 18 | return substr_replace($string, '', -1); 19 | } 20 | 21 | return $string; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Queue/QueueableEntity.php: -------------------------------------------------------------------------------- 1 | withoutMiddleware(); 18 | } else { 19 | throw new Exception('Unable to disable middleware. MakesHttpRequests trait not used.'); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Illuminate/Http/Middleware/FrameGuard.php: -------------------------------------------------------------------------------- 1 | headers->set('X-Frame-Options', 'SAMEORIGIN', false); 21 | 22 | return $response; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/Broadcasters/NullBroadcaster.php: -------------------------------------------------------------------------------- 1 | $attributes 16 | * @return mixed 17 | */ 18 | public function serialize(Model $model, string $key, mixed $value, array $attributes); 19 | } 20 | -------------------------------------------------------------------------------- /src/Illuminate/Translation/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /src/Illuminate/View/Compilers/Concerns/CompilesInjections.php: -------------------------------------------------------------------------------- 1 | "; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Illuminate/View/ViewName.php: -------------------------------------------------------------------------------- 1 | 2 | {{-- Header --}} 3 | 4 | 5 | {{ config('app.name') }} 6 | 7 | 8 | 9 | {{-- Body --}} 10 | {!! $slot !!} 11 | 12 | {{-- Subcopy --}} 13 | @isset($subcopy) 14 | 15 | 16 | {!! $subcopy !!} 17 | 18 | 19 | @endisset 20 | 21 | {{-- Footer --}} 22 | 23 | 24 | © {{ date('Y') }} {{ config('app.name') }}. {{ __('All rights reserved.') }} 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /config/concurrency.php: -------------------------------------------------------------------------------- 1 | env('CONCURRENCY_DRIVER', 'process'), 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/MigrationsEvent.php: -------------------------------------------------------------------------------- 1 | $options The options provided when the migration method was invoked. 14 | */ 15 | public function __construct( 16 | public $method, 17 | public array $options = [], 18 | ) { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Illuminate/Database/Query/IndexHint.php: -------------------------------------------------------------------------------- 1 | type = $type; 30 | $this->index = $index; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/Illuminate/Auth/Listeners/SendEmailVerificationNotification.php: -------------------------------------------------------------------------------- 1 | user instanceof MustVerifyEmail && ! $event->user->hasVerifiedEmail()) { 19 | $event->user->sendEmailVerificationNotification(); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/RetrievingManyKeys.php: -------------------------------------------------------------------------------- 1 | keys = $keys; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/Factories/CrossJoinSequence.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | public static $inMemoryConnections = []; 13 | 14 | /** 15 | * Indicates if the test database has been migrated. 16 | * 17 | * @var bool 18 | */ 19 | public static $migrated = false; 20 | 21 | /** 22 | * Indicates if a lazy refresh hook has been invoked. 23 | * 24 | * @var bool 25 | */ 26 | public static $lazilyRefreshed = false; 27 | } 28 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/show.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 |
6 |
7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/CacheHit.php: -------------------------------------------------------------------------------- 1 | value = $value; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Foundation/CachesConfiguration.php: -------------------------------------------------------------------------------- 1 | messages()->isEmpty() && $request->headers->has('Precognition-Validate-Only')) { 17 | abort(204, headers: ['Precognition-Success' => 'true']); 18 | } 19 | }; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Illuminate/Queue/InvalidPayloadException.php: -------------------------------------------------------------------------------- 1 | value = $value; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/Illuminate/Database/ClassMorphViolationException.php: -------------------------------------------------------------------------------- 1 | model = $class; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/rule.implicit.stub: -------------------------------------------------------------------------------- 1 | app->singleton('cookie', function ($app) { 17 | $config = $app->make('config')->get('session'); 18 | 19 | return (new CookieJar)->setDefaultPathAndDomain( 20 | $config['path'], $config['domain'], $config['secure'], $config['same_site'] ?? null 21 | ); 22 | }); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Cache/LockProvider.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->timestamps(); 17 | }); 18 | } 19 | 20 | /** 21 | * Reverse the migrations. 22 | */ 23 | public function down(): void 24 | { 25 | Schema::dropIfExists('{{ table }}'); 26 | } 27 | }; 28 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Routing/PrecognitionCallableDispatcher.php: -------------------------------------------------------------------------------- 1 | resolveParameters($route, $callable); 20 | 21 | abort(204, headers: ['Precognition-Success' => 'true']); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/Mailables/Address.php: -------------------------------------------------------------------------------- 1 | address = $address; 30 | $this->name = $name; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/request.stub: -------------------------------------------------------------------------------- 1 | |string> 21 | */ 22 | public function rules(): array 23 | { 24 | return [ 25 | // 26 | ]; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/VendorTagPublished.php: -------------------------------------------------------------------------------- 1 | tag = $tag; 30 | $this->paths = $paths; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/Illuminate/Http/Middleware/CheckResponseForModifications.php: -------------------------------------------------------------------------------- 1 | isNotModified($request); 23 | } 24 | 25 | return $response; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/Illuminate/Routing/Matching/UriValidator.php: -------------------------------------------------------------------------------- 1 | getPathInfo(), '/') ?: '/'; 20 | 21 | return preg_match($route->getCompiled()->getRegex(), rawurldecode($path)); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Secret.php: -------------------------------------------------------------------------------- 1 | setHidden(true)->setHiddenFallback($fallback); 21 | 22 | return $this->usingQuestionHelper(fn () => $this->output->askQuestion($question)); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/Concerns/HasUlids.php: -------------------------------------------------------------------------------- 1 | path = $path; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/Illuminate/Http/Exceptions/PostTooLargeException.php: -------------------------------------------------------------------------------- 1 | 'primary', 4 | 'align' => 'center', 5 | ]) 6 | 7 | 8 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/Illuminate/View/AppendableAttributeValue.php: -------------------------------------------------------------------------------- 1 | value = $value; 24 | } 25 | 26 | /** 27 | * Get the string value. 28 | * 29 | * @return string 30 | */ 31 | public function __toString() 32 | { 33 | return (string) $this->value; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/Illuminate/View/Compilers/CompilerInterface.php: -------------------------------------------------------------------------------- 1 | resolveName().' has been attempted too many times.'), function ($e) use ($job) { 25 | $e->job = $job; 26 | }); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/Illuminate/Testing/Fluent/Concerns/Debugging.php: -------------------------------------------------------------------------------- 1 | prop($prop)); 20 | 21 | return $this; 22 | } 23 | 24 | /** 25 | * Retrieve a prop within the current scope using "dot" notation. 26 | * 27 | * @param string|null $key 28 | * @return mixed 29 | */ 30 | abstract protected function prop(?string $key = null); 31 | } 32 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/scripts.js: -------------------------------------------------------------------------------- 1 | import tippy from 'tippy.js'; 2 | import alpine from 'alpinejs'; 3 | import hljs from 'highlight.js/lib/core'; 4 | import php from 'highlight.js/lib/languages/php'; 5 | 6 | alpine.start(); 7 | 8 | hljs.registerLanguage('php', php); 9 | 10 | window.hljs = hljs; 11 | 12 | hljs.highlightElement(document.querySelector('.default-highlightable-code')); 13 | 14 | document.querySelectorAll('.highlightable-code').forEach((block) => { 15 | if (block.dataset.highlighted !== 'yes') { 16 | hljs.highlightElement(block); 17 | } 18 | }); 19 | 20 | tippy('[data-tippy-content]', { 21 | trigger: 'click', 22 | arrow: true, 23 | theme: 'material', 24 | animation: 'scale', 25 | }); 26 | -------------------------------------------------------------------------------- /src/Illuminate/Http/Exceptions/ThrottleRequestsException.php: -------------------------------------------------------------------------------- 1 | client as $node) { 22 | $node->executeCommand(tap(new $command)->setArguments(func_get_args())); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/Illuminate/Filesystem/functions.php: -------------------------------------------------------------------------------- 1 | $path) { 16 | if (empty($path) && $path !== '0') { 17 | unset($paths[$index]); 18 | } else { 19 | $paths[$index] = DIRECTORY_SEPARATOR.ltrim($path, DIRECTORY_SEPARATOR); 20 | } 21 | } 22 | 23 | return $basePath.implode('', $paths); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/ConnectionEvent.php: -------------------------------------------------------------------------------- 1 | connection = $connection; 29 | $this->connectionName = $connection->getName(); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/Illuminate/Notifications/Events/NotificationSending.php: -------------------------------------------------------------------------------- 1 | httpOnly()) { 20 | return ! $request->secure(); 21 | } elseif ($route->secure()) { 22 | return $request->secure(); 23 | } 24 | 25 | return true; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Ask.php: -------------------------------------------------------------------------------- 1 | usingQuestionHelper( 20 | fn () => $this->output->askQuestion( 21 | (new Question($question, $default)) 22 | ->setMultiline($multiline) 23 | ) 24 | ); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/Illuminate/Routing/Matching/HostValidator.php: -------------------------------------------------------------------------------- 1 | getCompiled()->getHostRegex(); 20 | 21 | if (is_null($hostRegex)) { 22 | return true; 23 | } 24 | 25 | return preg_match($hostRegex, $request->getHost()); 26 | } 27 | } 28 | --------------------------------------------------------------------------------