Download the PHP package webdevjohn/selectboxes without Composer

On this page you can find all versions of the php package webdevjohn/selectboxes. 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 selectboxes

Select Boxes

Introduction

The Select Boxes package was created to provide an easy way to create the data used in select boxes on HTML forms. The package also helps dry-up your code by encapsulating select box data within dedicated re-usable classes.

Example Problem

It can be a pain when dealing with forms that require multiple select boxes, as the select boxes that are defined in the create() method also have to be re-defined within the edit() method of a controller. With the example below, you would also need to import 5 eloquent models: Artist, Genre, Label, Format, Tag. This starts to become messey.

Example Solution

The above example can be refactored to the following when using the Select Boxes package:

Installation

The package can be installed via composer using the following command:

Usage

You can create a select box group, or use the directly.

Creating a Select Box Group

Create a select box group when multiple select boxes are needed on a form. This can help DRY up your code, as the select box group can be re-used when creating and updating records (e.g. the and methods of a controller).

Run the following artisan command to create a select box group:

By default, the newly created group will created in:

You can override the default namespace by specifying an optional 2nd argument when creating a group:

Defining Select Boxes

Available Methods

Method Method Type Arguments Returns
createFrom() Mandatory $model string - fully qualified class name SelectBoxService
display() Mandatory $optionText string - the text that is displayed for a select box option
$optionValue string - the value of a select box option (default = "id")
SelectBoxService
where() Optional $column string - name of the column to filter
$operator string - the comparison operator
$value string - the value
SelectBoxService
orderBy() Optional $orderBy string - name of the column to order by
$sortOrder string - sort order (default = "desc")
SelectBoxService
asArray() Optional* $placeHolder bool - include a placeholder (default = "true")
$placeHolderText string - (default = "Please Select....")
Array
asJson() Optional* $placeHolder bool - include a placeholder (default = "true")
$placeHolderText string - (default = "Please Select....")
String (JSON)

*note. either asArray() or asJson() must be called in order to return results.

Using a Select Box Group

You can use constructor or method injection to inject a Select Box Group.

Then use the get() method on the $selectBoxes instance variable to create the select boxes.

This will push the data to the view in the following format:

Acessing Select Boxes Within a Blade File

All versions of selectboxes with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
laravel/framework Version ^8.0||^9.0||^10.0||^11.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 webdevjohn/selectboxes contains the following files

Loading the files please wait ....