Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #142

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

This package contains a collection of Laravel PHP classes designed to generate common HTML components, such as:

* Menus
* Alert messages
* Form fields
* Collection of radios and checkboxes
* Menus.
* Alert messages.
* Form fields.
* Collection of radios and checkboxes.

This is an extension of the Laravel Collective [HTML package](https://github.com/laravelcollective/html) and will be very useful if you are working on a custom CMS, an admin panel or basically any project that needs to generate HTML dynamically.

Expand Down Expand Up @@ -142,7 +142,7 @@ This package adds the following functionality to the Laravel Collective's Form B

#### novalidate

Deactivate the HTML5 validation, ideal for local or development environments
Deactivate the HTML5 validation, ideal for local or development environments:

```php
//config/html.php
Expand All @@ -161,7 +161,7 @@ i.e.:

#### checkboxes

Generate a collection of checkboxes
Generate a collection of checkboxes:

```php
$options = [
Expand All @@ -179,7 +179,7 @@ $checked = ['php'];

## Alert messages

This component will allow you to generate complex alert messages.
This component will allow you to generate complex alert messages:

```php
Alert::info('Your account is about to expire')
Expand Down