Download the PHP package marcincook/laravel-livewire-modals without Composer

On this page you can find all versions of the php package marcincook/laravel-livewire-modals. 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 laravel-livewire-modals

Laravel Livewire Modals

This package allows you to dynamically show your Laravel Livewire components inside Bootstrap modals.

Documentation

Requirements

Installation

Require the package:

Add the livewire:modals component to your app layout view:

Require ../../vendor/marcincook/laravel-livewire-modals/resources/js/modals in your app javascript file:

Usage

Modal Views

Make a Livewire component you want to show as a modal. The view for this component must use the Bootstrap modal-dialog container:

Showing Modals

Show a modal by emitting the showModal event with the component alias:

Mount Parameters

Pass parameters to the component mount method after the alias:

The component mount method for the example above would look like this:

Hiding Modals

Hide the currently open modal by emitting the hideModal event:

Or by using the Bootstrap data-bs-dismiss attribute:

Emitting Events

You can emit events inside your views:

Or inside your components, just like any normal Livewire event:

Publishing Assets

Custom View

Use your own modals view by publishing the package view:

Now edit the view file inside resources/views/vendor/laravel-livewire-modals. The package will use this view to render the component.


All versions of laravel-livewire-modals with dependencies

PHP Build Version
Package Version
Requires laravel/framework Version ^9.0|10.0
livewire/livewire Version ^2.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 marcincook/laravel-livewire-modals contains the following files

Loading the files please wait ....