Skip to content

Tags: livewire/volt

Tags

v1.6.5

Toggle v1.6.5's commit message
Fix code styling

v1.6.4

Toggle v1.6.4's commit message
Fix code styling

v1.6.3

Toggle v1.6.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Use paths from object property, not local variable (#95)

Volt is already doing the work to save multiple component paths, we just need to use those saved paths when setting up the namespace.

This provides support for easily adding paths to components in custom packages like:

```php
use Illuminate\Support\ServiceProvider;
use Livewire\Volt\Volt;

class PackageServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap the application services.
     */
    public function boot()
    {
        $this->app->booted( function() {
            Volt::mount( __DIR__.'/../resources/views/livewire' );
        } );
    }
}
```

v1.6.2

Toggle v1.6.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix: Add missing argument 'except' to function 'url' in state propert…

…ies (#89)

v1.6.1

Toggle v1.6.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fixes non-usage of `livewire.view_path` configuration (#85)

v1.6.0

Toggle v1.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[1.x] Allow setting title using a closure (#79)

v1.5.0

Toggle v1.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Allows to specify rules as closure (#71)

v1.4.0

Toggle v1.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[1.x] Removes custom `rendering` call (#65)

* Removes custom `rendering` call

* Fix code styling

---------

Co-authored-by: nunomaduro <[email protected]>

v1.3.3

Toggle v1.3.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add docblock for `Volt::withQueryParams()` (#55)

Add docblock for `Volt::withQueryParams()`

v1.3.2

Toggle v1.3.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[1.x] Adds `rendering` callback (#52)

* Adds `rendering`

* Fix code styling

---------

Co-authored-by: nunomaduro <[email protected]>