Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
This package has been abandoned. Use spatie/laravel-html instead.
Generated on May 9, 2024 via composer

laravelcollective/html v6.4.1

HTML and Form Builders for the Laravel Framework
Package summary
Share
1
issue
1
high severity
meta
1
1
license
45
MIT
Package created
5 Feb 2015
Version published
25 Apr 2023
Maintainers
3
Total deps
45
Direct deps
5
License
MIT

Issues

1

1 high severity issue

high
via: laravelcollective/html@v6.4.1
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
45 Packages, Including:
carbonphp/carbon-doctrine-types@3.2.0
doctrine/inflector@2.0.10
fruitcake/php-cors@v1.3.0
guzzlehttp/uri-template@v1.0.3
illuminate/bus@v10.48.10
illuminate/collections@v10.48.10
illuminate/conditionable@v10.48.10
illuminate/container@v10.48.10
illuminate/contracts@v10.48.10
illuminate/events@v10.48.10
illuminate/filesystem@v10.48.10
illuminate/http@v10.48.10
illuminate/macroable@v10.48.10
illuminate/pipeline@v10.48.10
illuminate/routing@v10.48.10
illuminate/session@v10.48.10
illuminate/support@v10.48.10
illuminate/view@v10.48.10
laravelcollective/html@v6.4.1
nesbot/carbon@2.72.3
psr/clock@1.0.0
psr/container@2.0.2
psr/event-dispatcher@1.0.0
psr/log@3.0.0
psr/simple-cache@3.0.0
symfony/deprecation-contracts@v3.5.0
symfony/error-handler@v7.0.7
symfony/event-dispatcher@v7.0.7
symfony/event-dispatcher-contracts@v3.5.0
symfony/finder@v6.4.7
symfony/http-foundation@v6.4.7
symfony/http-kernel@v6.4.7
symfony/mime@v6.4.7
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-intl-idn@v1.29.0
symfony/polyfill-intl-normalizer@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php72@v1.29.0
symfony/polyfill-php80@v1.29.0
symfony/polyfill-php83@v1.29.0
symfony/routing@v6.4.7
symfony/translation@v6.4.7
symfony/translation-contracts@v3.5.0
symfony/var-dumper@v7.0.7
voku/portable-ascii@2.0.1
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

5
All Dependencies CSV
β“˜ This is a list of laravelcollective/html 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
illuminate/httpv10.48.10-MIT
prod
illuminate/routingv10.48.10-MIT
prod
illuminate/sessionv10.48.10-MIT
prod
illuminate/supportv10.48.10-MIT
prod
illuminate/viewv10.48.10-MIT
prod

Visualizations

Frequently Asked Questions

What does laravelcollective/html do?

The LaravelCollective/HTML package provides HTML and Form Builders to augment the Laravel Framework's capabilities. These tools enable developers to structure their HTML and forms in a more convenient and efficient way, benefiting from Laravel's expressive syntax. Using LaravelCollective/HTML, coders can create structured, well-organized HTML and form components within the context of their Laravel-based projects.

How do you use laravelcollective/html?

To use the LaravelCollective/HTML package, you first need to install it via Composer by running the following command:

composer require laravelcollective/html

After installation, you will be able to use various types of HTML and form input elements in your Laravel project. Here are a few examples:

  • Creating a text input:
echo Form::text('username');
  • Creating a password input:
echo Form::password('password');
  • Form submission:
echo Form::submit('Click Me!');

Please note that the package should be properly configured within your Laravel application's provider array.

Where are the laravelcollective/html docs?

The official documentation for LaravelCollective/HTML can be found on the LaravelCollective website at this URL: https://laravelcollective.com/docs. The documentation provides further insights into the capabilities of the package, including a detailed set of instructions for configuring and using the tools. It serves as an essential guide for you to make the most out of LaravelCollective/HTML's offerings and to produce more robust, efficient, and maintainable code.