Download the PHP package mhmiton/laravel-modules-livewire without Composer
On this page you can find all versions of the php package mhmiton/laravel-modules-livewire. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mhmiton/laravel-modules-livewire
More information about mhmiton/laravel-modules-livewire
Files in mhmiton/laravel-modules-livewire
Package laravel-modules-livewire
Short Description Using Laravel Livewire in Laravel Modules package with automatically registered livewire components for every modules.
License MIT
Informations about the package laravel-modules-livewire
Laravel Modules With Livewire
Using Laravel Livewire in Laravel Modules package with automatically registered livewire components for every modules.
Example Source Code: https://github.com/mhmiton/laravel-modules-livewire-example
Example Live Demo: https://dev.mhmiton.com/laravel-modules-livewire-example
Installation:
Install through composer:
Publish the package's configuration file:
Making Components:
Command Signature:
php artisan module:make-livewire {component} {module} {--view=} {--force} {--inline} {--stub=}
Example:
Force create component if the class already exists:
Output:
Inline Component:
Output:
Modifying Stubs:
Publish the package's stubs:
After publishing the stubs, will create these files. And when running the make command, will use these stub files by default.
You're able to set a custom stub directory for component with (--stub) option.
Extra Option (--view):
You're able to set a custom view path for component with (--view) option.
Example:
Output:
Rendering Components:
<livewire:{module-lower-name}::component-class-kebab-case />
Example:
Volt:
Making Volt Components:
Command Signature:
php artisan module:make-volt {component} {module} {--view=} {--class} {--functional} {--force} {--stub=}
Example:
Force create component if the view already exists:
Output:
Option (--view):
You're able to set a registered view namespace for component with (--view) option.
Note: Only registered view namespace will be support from the "volt_view_namespaces" config. By default registered view namespaces are 'livewire' and 'pages' in the config.
Option (--class):
You're able to create class based volt component with (--class) option.
Option (--functional):
You're able to create functional (API style) volt component with (--functional) option.
Note:: By default will be create class based or functional component by registered view namespace's files. If any class based component exists on the view namespace, then will be create class based component.
Modifying Stubs:
The --stub
option is the same to module::make-livewire
.
Rendering Volt Components:
<livewire:{module-lower-name}::component-view />
Tag:
Route:
Custom Module:
To create components for the custom module, should be add custom modules in the config file.
The config file is located at config/modules-livewire.php
after publishing the config file.
Remove comment for these lines & add your custom modules.
Custom module config details
name_lower: Module name in lower case (required).
path: Add module full path (required).
module_namespace: Add module namespace (required).
namespace: By default using
config('modules-livewire.namespace')
value. You can set a different value for the specific module.view: By default using
config('modules-livewire.view')
value. You can set a different value for the specific module.views_path: Module resource view path (required).
volt_view_namespaces: By default using
config('modules-livewire.volt_view_namespaces')
value. You can set a different value for the specific module.
License
Copyright (c) 2021 Mehediul Hassan Miton [email protected]
The MIT License (MIT). Please see License File for more information.
All versions of laravel-modules-livewire with dependencies
laravel/framework Version ^10.0|^11.0|^12.0
livewire/livewire Version ^3.0
nwidart/laravel-modules Version >=11.0