Download the PHP package lhaamed/blade-bundler without Composer

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

BladeBundler

a super efficient package to bundle all similar structures for your Laravel blades. Using this package will give you incredible development speed, which is necessary at critical points. You will be able to customize it to any level you want.

Installation

Like any other packages in the Packagist you'll need to add service provider and Facade aliases into your config/app.php using the following lines:

first of all, you need to run the following command in the root directory of your app in the terminal:

then, add this as a service provider in the "providers" array:

then add this as an alias in the "aliases" array:

never forget to use the following commands in the terminal because you have changed config files.

what is ListBundle

The ListBundle is a Bundle that helps you create the main structure of your lists in a better way using the package principles. you can have different lists for every model and any kind of usage. for example, for showing a list of users you can have different types of lists and in each controller, you can call any of them by just changing the function name in the listGenerator function. the advantage of this system is having both Collection base and Paginated base lists. it means you can pass the data as Collection or Paginated Object and based on the type of data the Bundler generates the desired bundle for you. In this release, there is no view for lists by default. don't forget that we are working on making things easier for you not causing troubles in the dev process. By getting dd() from the ListBundle object you'll find out how to show it in your blade file. not having certain view files for lists helps you bind the ListBundle with your theme at any level of complexity.

how to use ListBundle

this package will help you to organize generating forms and table lists in your app. so you can have full control over all existing forms and lists in any aspect. To have a list you need your $query which could be paginated or not. if you pass the paginated query you'll get the bundle paginated and if you don't it gives the bundle properly. the other parameter that is necessary to make a bundle is a map function. the bundler with pass the query through the map function to generate the list as you desire.

or

so let's take a look at the map function structure.

in this function, you define what are the heads and each cell's exact value. so you have full control over your list in a better way.

what is FormBundle

The FormBundle is a Bundle that helps you create forms in Bootstrap structure. After creating the Form via the FormGenerator you have to append a new section. In each section, you are allowed to append rows and inside the rows, you can append your cells. each cell contains input and you can see the list of supported inputs in the following:

License

MIT


All versions of blade-bundler with dependencies

PHP Build Version
Package Version
Requires laravel/framework Version >=10.0
php Version ^8.1
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 lhaamed/blade-bundler contains the following files

Loading the files please wait ....