PHPackages                             wika-group/livewire-slide-over - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. wika-group/livewire-slide-over

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

wika-group/livewire-slide-over
==============================

Livewire component that provides drawers (slide overs) that support multiple children while maintaining state.

v2.0.3(5mo ago)22.0k↑521.4%[4 PRs](https://github.com/WIKA-Group/livewire-slide-over/pulls)MITPHPPHP ^8.2CI passing

Since Feb 3Pushed 1mo agoCompare

[ Source](https://github.com/WIKA-Group/livewire-slide-over)[ Packagist](https://packagist.org/packages/wika-group/livewire-slide-over)[ RSS](/packages/wika-group-livewire-slide-over/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (8)Dependencies (5)Versions (22)Used By (0)

Livewire slide over panel
=========================

[](#livewire-slide-over-panel)

Slide Over Panel is a Livewire component that provides slide overs that support multiple children while maintaining state. This package is fork of [batnieluyo/livewire-slide-over](https://github.com/batnieluyo/livewire-slide-over), a livewire component that renders slide over with state management on livewire.

### Upgrading from v1

[](#upgrading-from-v1)

After updating the package, you can use the following command to automate the upgrade process.

```
php ./vendor/bin/slideover-upgrade
```

This command scans your application and configuration files and automatically updates deprecated namespaces to the new package structure.

The old namespace is being deprecated and has been replaced by the new `WikaGroup` namespace.

```
// Before
use WireComponents\LivewireSlideOvers\SlideOverComponent;
//After
use WikaGroup\LivewireSlideOver\SlideOverComponent;
```

Please review the updated files to ensure the new namespace is applied consistently across your project.

### Installation

[](#installation)

To get started, require the package via Composer:

```
composer require wika-group/livewire-slide-over
```

### Livewire directive

[](#livewire-directive)

Add the Livewire directive @livewire('slide-over-panel') directive to your master layout.

```

    @livewire('slide-over-panel')

```

Creating a Slide Over
---------------------

[](#creating-a-slide-over)

You can run `php artisan make:livewire ShoppingCart` to make the initial Livewire component. Open your component class and make sure it extends the `SlideOverComponent` class:

```
