Skip to content

Commit

Permalink
Update structure to reflect new livewire location
Browse files Browse the repository at this point in the history
  • Loading branch information
csrui committed Jan 9, 2024
1 parent c511143 commit f348225
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ composer require 26b/laravel-dynamic-panels
Create as many livewire components as you want, where you overload the method `getPanels()` with a list of the panels you want to display.

```php
namespace App\Http\Livewire\DynamicPanels;
namespace App\Livewire\DynamicPanels;

use TwentySixB\LaravelDynamicPanels\Http\Livewire\PanelContainer;
use TwentySixB\LaravelDynamicPanels\Livewire\PanelContainer;

class Container extends PanelContainer
{
Expand Down
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"type": "library",
"require": {
"php": "^8.0",
"spatie/laravel-package-tools": "^1.14",
"livewire/livewire": "^2.10"
"spatie/laravel-package-tools": "^1.14"
},
"license": "MIT",
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/DynamicPanelsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Spatie\LaravelPackageTools\PackageServiceProvider;
use Spatie\LaravelPackageTools\Package;
use TwentySixB\LaravelDynamicPanels\Http\Livewire\PanelContainer;
use TwentySixB\LaravelDynamicPanels\Livewire\PanelContainer;

/**
* Package Service Provider
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace TwentySixB\LaravelDynamicPanels\Http\Livewire;
namespace TwentySixB\LaravelDynamicPanels\Livewire;

use Livewire\Component;
use Illuminate\Support\Facades\View;
Expand Down

0 comments on commit f348225

Please sign in to comment.