MaintenanceServiceProvider::__construct()

void __construct(Application $app) Create a new service provider instance. Parameters Application $app Return Value void

TestCase::seeInSession()

void seeInSession(string|array $key, mixed $value = null) Assert that the session has a given value. Parameters string|array $key mixed $value Return Value void

Foundation\Testing\Constraints

Illuminate\Foundation\Testing\Constraints Classes FormFieldConstraint HasElement HasInElement HasLink HasSource HasText HasValue IsChecked IsSelected PageConstraint ReversePageConstraint

TestCase::afterApplicationCreated()

void afterApplicationCreated(callable $callback) Register a callback to be run after the application is created. Parameters callable $callback Return Value void

ViewPublishCommand::info()

void info(string $string) Write a string as information output. Parameters string $string Return Value void

DatabaseMigrations

DatabaseMigrations trait DatabaseMigrations (View source) Methods void runDatabaseMigrations() Define hooks to migrate the database before and after each test.

ArrayStore::many()

array many(array $keys) Retrieve multiple items from the cache by key. Items not found in the cache will have a null value. Parameters array $keys Return Value array

TestCase::assertHasOldInput()

void assertHasOldInput() Assert that the session has old input. Return Value void

RollbackCommand::confirmToProceed()

bool confirmToProceed(string $warning = 'Application In Production!', Closure|bool|null $callback = null) Confirm before proceeding with the action. Parameters string $warning Closure|bool|null $callback Return Value bool

Views

Views Creating Views Passing Data To Views Sharing Data With All Views View Composers Creating Views Views contain the HTML served by your application and separate your controller / application logic from your presentation logic. Views are stored in the resources/views directory. A simple view might look something like this: <!-- View stored in resources/views/greeting.blade.php --> <html> <body> <h1>Hello, {{ $name }}</h1> </body> </h