Download the PHP package redbastie/livewire-auto-route without Composer
On this page you can find all versions of the php package redbastie/livewire-auto-route. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download redbastie/livewire-auto-route
More information about redbastie/livewire-auto-route
Files in redbastie/livewire-auto-route
Download redbastie/livewire-auto-route
More information about redbastie/livewire-auto-route
Files in redbastie/livewire-auto-route
Vendor redbastie
Package livewire-auto-route
Short Description Automatic routes for your Livewire components.
License MIT
Homepage https://github.com/redbastie/livewire-auto-route
Package livewire-auto-route
Short Description Automatic routes for your Livewire components.
License MIT
Homepage https://github.com/redbastie/livewire-auto-route
Please rate this library. Is it a good library?
Informations about the package livewire-auto-route
NO LONGER MAINTAINED
This package is no longer maintained. Please consider my latest package here: https://github.com/redbastie/tailwire
Livewire Auto Route
Automatic routes for your Livewire components.
Installation
Install via composer:
composer require redbastie/livewire-auto-route
Usage
Specify public $route*
properties in your full page Livewire component:
class Vehicle extends Component
{
public $routeUri = '/vehicle/{name}';
public $routeDomain = null;
public $routeMiddleware = ['guest'];
public $routeName = 'vehicle';
public $routeWhere = ['name' => '[A-Za-z]+'];
public function render()
{
return view('livewire.vehicle');
}
}
A minimum of $routeUri
is required.
All versions of livewire-auto-route with dependencies
PHP Build Version
Package Version
The package redbastie/livewire-auto-route contains the following files
Loading the files please wait ....