Download the PHP package tiknil/bs-blade-forms without Composer

On this page you can find all versions of the php package tiknil/bs-blade-forms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package bs-blade-forms

Blade Form Components Library

GitHub Actions Latest Version on Packagist Total Downloads

Opinionated library designed to streamline the process of building forms in Laravel applications by leveraging Blade components and Boostrap utilities.

Key Features

Installation

You can install the package via composer:

JS/CSS assets should be automatically published alongside the default laravel libraries assets. Alternatively, publish them using:

[!NOTE]
Boostrap is not imported automatically by the library. We assume you are already using it on your page and it is already available

Usage

The advanced select elements (SearchSelect / MultiSelect) requires some additional assets to be included. Add this between your page head tag:

In your blade templates, use the provided components:

Examples

Go from:

To:

Components

Form

Renders a form, with optional modal binding.

Automatically adds @csrf and @method(...) when required.

When a model is provided, x-bs:: components will automatically use the model corresponding field as default value.

SearchSelect

Renders a single selection element with a research bar for filtering the options.

[!IMPORTANT]
Include {{ BsBladeForms::assets() }} in the page head for this component to work

Attribute Type Description
name string Required. Name of the select element
options array, Collection The options to display on the select.
value string, int The initial selected value
required bool Set the select element as required (form can't be submitted without selection)
placeholder string Element placeholder when no option is selected
label string If present, renders a Label above the element
icon string If present, renders an IconGroup around the element
allow-clear bool Allows the user to clear the selected option
empty-value string The value to submit when no option is selected
search-placeholder string The placeholder of the search input
* Additional attributes will be forwarded to the underlying element.

MultiSelect

Renders a multiple selection element with a research bar for filtering the options.

[!IMPORTANT]
Include {{ BsBladeForms::assets() }} in the page head for this component to work

Attribute Type Description
name string Required. Name of the select element
options array, Collection The options to display on the select.
value array The initial selected values
required bool Set the select element as required (form can't be submitted without selection)
placeholder string Element placeholder when no option is selected
label string If present, renders a Label above the element
icon string If present, renders an IconGroup around the element
search-placeholder string The placeholder of the search input
* Additional attributes will be forwarded to the underlying element.

Select

Attribute Type Description
name string Required. Name of the select element
options array, Collection The options to display on the select.
value string The initial selected values
required bool Set the select element as required (form can't be submitted without selection)
label string If present, renders a Label above the element
icon string If present, renders an IconGroup around the element
empty-option string When present, an additional option with empty string as value is added with this label.
* Additional attributes will be forwarded to the underlying element.

Input

Attribute Type Description
name string Required. Name of the input element
value string The initial value
label string If present, renders a Label above the element
icon string If present, renders an IconGroup around the element
type string Type of the input (text by default)
* Additional attributes will be forwarded to the underlying element.

Textarea

Attribute Type Description
name string Required. Name of the textarea element
value string The initial value
label string If present, renders a Label above the element
* Additional attributes will be forwarded to the underlying element.

Checkbox

[!NOTE]
When the form is submitted, a parameter is submitted even when the checkbox is not checked! The parameter submitted has value 1 when the checkbox is checked, 0 otherwise

Attribute Type Description
name string Required. Name of the element
label string If present, renders a Label aside the input checkbox
checked bool Initial checked value (default false)
value string The value submitted when the checkbox is checked (default 1)
false-value string The value submitted when the checkbox is not checked (default 0)
send-false-value bool Send the false value when the checkbox is not checked (default true)
* Additional attributes will be forwarded to the underlying element.

Radio

Attribute Type Description
name string Required. Name of the element
label string If present, renders a Label aside the input radio
checked bool Initial checked value (default false)
value string The value submitted when the checkbox is checked
* Additional attributes will be forwarded to the underlying element.

Label

All form components automatically include the Label component when the label attribute is present, but it can be used independently:

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

License

The MIT License (MIT). Please see License File for more information.


This package was generated using the Laravel Package Boilerplate, following the laravelpackage.com documentation.


All versions of bs-blade-forms with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1|^8.2|^8.3|^8.4
illuminate/support Version ^10.0|^11.0|^12.0
illuminate/contracts Version ^10.0|^11.0|^12.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package tiknil/bs-blade-forms contains the following files

Loading the files please wait ....